reactos/reactos/win32ss/win32k.h
Timo Kreuzer 20d7540340 [WIN32K]
- Add InterlockedIn/DecrementUL
- Define NULL to nullptr for C++ code
- Reorder includes a bit. First GDI then USER. Don't include most USER headers for C++ for now.

svn path=/trunk/; revision=66890
2015-03-25 22:32:35 +00:00

11 lines
189 B
C

#include "pch.h"
/* Headers that shouldn't be precompiled due to GCC bugs */
/* Probe and capture */
#include <reactos/probe.h>
#ifdef __cplusplus
#undef NULL
#define NULL nullptr
#endif