mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
19 lines
243 B
C
19 lines
243 B
C
/*
|
|
osxsupport.h - Cocoa glue to emulated deprecated old Carbon path finder functions
|
|
*/
|
|
|
|
#ifndef _OSXSUPPORT_H_
|
|
#define _OSXSUPPORT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char *FindPrefsDir(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|