author | Ryan C. Gordon |
Sun, 24 Nov 2013 23:56:17 -0500 | |
changeset 8093 | b43765095a6f |
parent 7667 | be1cc6f55840 |
child 8149 | 681eb46b8ac4 |
permissions | -rw-r--r-- |
icculus@7667 | 1 |
/* |
icculus@7667 | 2 |
Simple DirectMedia Layer |
icculus@7667 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
icculus@7667 | 4 |
|
icculus@7667 | 5 |
This software is provided 'as-is', without any express or implied |
icculus@7667 | 6 |
warranty. In no event will the authors be held liable for any damages |
icculus@7667 | 7 |
arising from the use of this software. |
icculus@7667 | 8 |
|
icculus@7667 | 9 |
Permission is granted to anyone to use this software for any purpose, |
icculus@7667 | 10 |
including commercial applications, and to alter it and redistribute it |
icculus@7667 | 11 |
freely, subject to the following restrictions: |
icculus@7667 | 12 |
|
icculus@7667 | 13 |
1. The origin of this software must not be misrepresented; you must not |
icculus@7667 | 14 |
claim that you wrote the original software. If you use this software |
icculus@7667 | 15 |
in a product, an acknowledgment in the product documentation would be |
icculus@7667 | 16 |
appreciated but is not required. |
icculus@7667 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
icculus@7667 | 18 |
misrepresented as being the original software. |
icculus@7667 | 19 |
3. This notice may not be removed or altered from any source distribution. |
icculus@7667 | 20 |
*/ |
icculus@8093 | 21 |
#include "../../SDL_internal.h" |
icculus@7667 | 22 |
|
icculus@7667 | 23 |
#ifdef SDL_FILESYSTEM_DUMMY |
icculus@7667 | 24 |
|
icculus@7667 | 25 |
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
icculus@7667 | 26 |
/* System dependent filesystem routines */ |
icculus@7667 | 27 |
|
icculus@7667 | 28 |
#include "SDL_error.h" |
icculus@7667 | 29 |
#include "SDL_filesystem.h" |
icculus@7667 | 30 |
|
icculus@7667 | 31 |
char * |
icculus@7667 | 32 |
SDL_GetBasePath(void) |
icculus@7667 | 33 |
{ |
icculus@7667 | 34 |
SDL_Unsupported(); |
icculus@7667 | 35 |
return NULL; |
icculus@7667 | 36 |
} |
icculus@7667 | 37 |
|
icculus@7667 | 38 |
char * |
icculus@7667 | 39 |
SDL_GetPrefPath(const char *org, const char *app) |
icculus@7667 | 40 |
{ |
icculus@7667 | 41 |
SDL_Unsupported(); |
icculus@7667 | 42 |
return NULL; |
icculus@7667 | 43 |
} |
icculus@7667 | 44 |
|
icculus@7667 | 45 |
#endif /* SDL_FILESYSTEM_DUMMY */ |
icculus@7667 | 46 |
|
icculus@7667 | 47 |
/* vi: set ts=4 sw=4 expandtab: */ |