You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RAYLIB_PHYSFS_DEFboolUnmountPhysFS(constchar*oldDir); // Unmounts the given directory
55
55
RAYLIB_PHYSFS_DEFboolFileExistsInPhysFS(constchar*fileName); // Check if the given file exists in PhysFS
56
56
RAYLIB_PHYSFS_DEFboolDirectoryExistsInPhysFS(constchar*dirPath); // Check if the given directory exists in PhysFS
57
-
RAYLIB_PHYSFS_DEF unsignedchar*LoadFileDataFromPhysFS(constchar*fileName, unsigned int*bytesRead); // Load a data buffer from PhysFS (memory should be freed)
57
+
RAYLIB_PHYSFS_DEF unsignedchar*LoadFileDataFromPhysFS(constchar*fileName, int*bytesRead); // Load a data buffer from PhysFS (memory should be freed)
58
58
RAYLIB_PHYSFS_DEFchar*LoadFileTextFromPhysFS(constchar*fileName); // Load text from a file (memory should be freed)
59
59
RAYLIB_PHYSFS_DEFboolSetPhysFSWriteDirectory(constchar*newDir); // Set the base directory where PhysFS should write files to (defaults to the current working directory)
60
-
RAYLIB_PHYSFS_DEFboolSaveFileDataToPhysFS(constchar*fileName, void*data, unsigned intbytesToWrite); // Save the given file data in PhysFS
60
+
RAYLIB_PHYSFS_DEFboolSaveFileDataToPhysFS(constchar*fileName, void*data, intbytesToWrite); // Save the given file data in PhysFS
61
61
RAYLIB_PHYSFS_DEFboolSaveFileTextToPhysFS(constchar*fileName, char*text); // Save the given file text in PhysFS
62
62
RAYLIB_PHYSFS_DEFFilePathListLoadDirectoryFilesFromPhysFS(constchar*dirPath); // Get filenames in a directory path (memory should be freed)
63
63
RAYLIB_PHYSFS_DEF longGetFileModTimeFromPhysFS(constchar*fileName); // Get file modification time (last write time) from PhysFS
0 commit comments