raze-gles/source/build/include/osxbits.h
hendricks266 1cc9d13ccf The great repository rearrangement of 2017.
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
2017-02-01 10:01:11 +00:00

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