mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
18 lines
243 B
C
18 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
|