24 lines
367 B
C
24 lines
367 B
C
/* ManagerExport.h */
|
|
/* Exports the manager's functions */
|
|
/* For now: only Macintosh */
|
|
|
|
#ifndef MANAGEREXPORT_H
|
|
#define MANAGEREXPORT_H
|
|
|
|
#ifdef macintosh
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DLL_EXPORT int CKGetPluginInfoCount();
|
|
|
|
DLL_EXPORT CKPluginInfo* CKGetPluginInfo(int Index);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // macintosh
|
|
|
|
#endif // MANAGEREXPORT_H
|