Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added SDL_GetBasePath() and SDL_GetPrefPath() in new filesystem module.
- Loading branch information
Showing
with
848 additions
and 7 deletions.
- +1 −0 .hgignore
- +1 −0 Android.mk
- +32 −1 CMakeLists.txt
- +1 −0 Makefile.in
- +1 −0 Makefile.minimal
- +1 −1 Makefile.pandora
- +1 −0 Makefile.psp
- +8 −0 VisualC/SDL/SDL_VS2008.vcproj
- +2 −0 VisualC/SDL/SDL_VS2010.vcxproj
- +3 −1 VisualC/SDL/SDL_VS2012.vcxproj
- +58 −4 configure
- +41 −0 configure.in
- +1 −0 include/SDL.h
- +8 −0 include/SDL_config.h.cmake
- +8 −0 include/SDL_config.h.in
- +3 −0 include/SDL_config_android.h
- +3 −0 include/SDL_config_iphoneos.h
- +3 −0 include/SDL_config_macosx.h
- +3 −0 include/SDL_config_minimal.h
- +1 −0 include/SDL_config_pandora.h
- +3 −0 include/SDL_config_psp.h
- +3 −0 include/SDL_config_windows.h
- +136 −0 include/SDL_filesystem.h
- +92 −0 src/filesystem/beos/SDL_sysfilesystem.cc
- +93 −0 src/filesystem/cocoa/SDL_sysfilesystem.m
- +47 −0 src/filesystem/dummy/SDL_sysfilesystem.c
- +161 −0 src/filesystem/unix/SDL_sysfilesystem.c
- +96 −0 src/filesystem/windows/SDL_sysfilesystem.c
- +4 −0 test/Makefile.in
- +33 −0 test/testfilesystem.c
Oops, something went wrong.