historical/toontown-classic.git/panda/include/parser-inc/winnt.h

17 lines
273 B
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
#ifndef WINNT_H
#define WINNT_H
typedef void *PVOID;
typedef struct _RTL_SRWLOCK {
PVOID Ptr;
} RTL_SRWLOCK, *PRTL_SRWLOCK;
#define RTL_SRWLOCK_INIT {0}
typedef struct _RTL_CONDITION_VARIABLE {
PVOID Ptr;
} RTL_CONDITION_VARIABLE, *PRTL_CONDITION_VARIABLE;
#endif