123
This commit is contained in:
31
CryAnimation/splitpath.h
Normal file
31
CryAnimation/splitpath.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifdef WIN32
|
||||
#define portable_splitpath _splitpath
|
||||
#else
|
||||
#ifdef _XBOX
|
||||
#ifdef __cplusplus
|
||||
extern "C" void portable_splitpath (
|
||||
const char *path,
|
||||
char *drive,
|
||||
char *dir,
|
||||
char *fname,
|
||||
char *ext
|
||||
);
|
||||
#else // __cplusplus
|
||||
void portable_splitpath (
|
||||
const char *path,
|
||||
char *drive,
|
||||
char *dir,
|
||||
char *fname,
|
||||
char *ext
|
||||
);
|
||||
#endif // __cplusplus
|
||||
#else // _XBOX
|
||||
extern "C" void portable_splitpath (
|
||||
const char *path,
|
||||
char *drive,
|
||||
char *dir,
|
||||
char *fname,
|
||||
char *ext
|
||||
);
|
||||
#endif // _XBOX
|
||||
#endif
|
||||
Reference in New Issue
Block a user