mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
1cc9d13ccf
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
21 lines
381 B
C
21 lines
381 B
C
#ifndef osxbits_h_
|
|
#define osxbits_h_
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int osx_msgbox(const char *name, const char *msg);
|
|
int osx_ynbox(const char *name, const char *msg);
|
|
|
|
char *osx_gethomedir(void);
|
|
char *osx_getsupportdir(int32_t local);
|
|
char *osx_getappdir(void);
|
|
char *osx_getapplicationsdir(int32_t local);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|