mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
15 lines
395 B
C
15 lines
395 B
C
#ifndef UAE_UAEIPC_H
|
|
#define UAE_UAEIPC_H
|
|
|
|
#include "uae/types.h"
|
|
|
|
extern void *createIPC (const TCHAR *name, int);
|
|
extern void closeIPC (void*);
|
|
extern int checkIPC (void*,struct uae_prefs*);
|
|
extern void *geteventhandleIPC (void*);
|
|
extern int sendBinIPC (void*, uae_u8 *msg, int len);
|
|
extern int sendIPC (void*, TCHAR *msg);
|
|
extern int isIPC (const TCHAR *pipename);
|
|
|
|
#endif /* UAE_UAEIPC_H */
|