mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
53e2a8297d
git-svn-id: https://svn.eduke32.com/eduke32@8351 1a8010ca-5511-0410-912e-c29ae57300e0 # Conflicts: # source/build/src/sdlayer.cpp # source/build/src/startosx.editor.mm # source/platform/macos/osxbits.h # source/platform/macos/startosx.game.mm
16 lines
362 B
C
16 lines
362 B
C
#ifndef osxbits_h_
|
|
#define osxbits_h_
|
|
#include <sys/types.h>
|
|
|
|
void osx_preopen(void);
|
|
void osx_postopen(void);
|
|
|
|
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);
|
|
|
|
#endif
|