Files
FC1/CryAnimation/splitpath.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

31 lines
617 B
C

#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