mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 17:32:13 +00:00
9268b9f0b6
git-svn-id: https://svn.eduke32.com/eduke32@4766 1a8010ca-5511-0410-912e-c29ae57300e0
16 lines
248 B
C
16 lines
248 B
C
#ifndef osxbits_h_
|
|
#define osxbits_h_
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int32_t osx_msgbox(const char *name, const char *msg);
|
|
int32_t osx_ynbox(const char *name, const char *msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|