fallout2-ce/src/autorun.h

15 lines
232 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef AUTORUN_H
#define AUTORUN_H
#include <stdbool.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
extern HANDLE gInterplayGenericAutorunMutex;
bool autorunMutexCreate();
void autorunMutexClose();
#endif /* AUTORUN_H */