2014-11-22 12:32:56 +00:00
|
|
|
#ifndef osxbits_h_
|
|
|
|
#define osxbits_h_
|
2010-01-23 22:12:02 +00:00
|
|
|
#include <sys/types.h>
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-12-29 02:57:33 +00:00
|
|
|
int osx_msgbox(const char *name, const char *msg);
|
|
|
|
int osx_ynbox(const char *name, const char *msg);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-12-08 04:31:57 +00:00
|
|
|
char *osx_gethomedir(void);
|
2014-12-08 07:32:58 +00:00
|
|
|
char *osx_getsupportdir(int32_t local);
|
2014-12-08 04:31:57 +00:00
|
|
|
char *osx_getappdir(void);
|
2014-12-08 07:32:58 +00:00
|
|
|
char *osx_getapplicationsdir(int32_t local);
|
2014-12-08 04:31:57 +00:00
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-16 21:03:24 +00:00
|
|
|
#endif
|