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

31 lines
641 B
C

#ifdef WIN32
#define portable_makepath _makepath
#else
#ifdef _XBOX
#ifdef __cplusplus
extern "C" void portable_makepath (
char *path,
const char *drive,
const char *dir,
const char *fname,
const char *ext
);
#else // _CPP
void portable_makepath (
char *path,
const char *drive,
const char *dir,
const char *fname,
const char *ext
);
#endif // _CPP
#else // _XBOX
extern "C" void portable_makepath (
char *path,
const char *drive,
const char *dir,
const char *fname,
const char *ext
);
#endif // _XBOX
#endif