13 lines
210 B
C
13 lines
210 B
C
|
#ifndef AUTORUN_H
|
||
|
#define AUTORUN_H
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
|
||
|
extern HANDLE gInterplayGenericAutorunMutex;
|
||
|
|
||
|
bool autorunMutexCreate();
|
||
|
void autorunMutexClose();
|
||
|
|
||
|
#endif /* AUTORUN_H */
|