#include <windows.h>
#include <ndk/iofuncs.h>
#include <ndk/obfuncs.h>
#include <ndk/rtlfuncs.h>
#include <wine/unicode.h>
Go to the source code of this file.
Defines |
| #define | UNICODE |
| #define | _UNICODE |
| #define | WIN32_NO_STATUS |
| #define | NTOS_MODE_USER |
| #define | FREE(Area) RtlFreeHeap(InfpHeap, 0, (Area)) |
| #define | MALLOC(Size) RtlAllocateHeap(InfpHeap, 0, (Size)) |
| #define | ZEROMEMORY(Area, Size) RtlZeroMemory((Area), (Size)) |
| #define | MEMCPY(Dest, Src, Size) RtlCopyMemory((Dest), (Src), (Size)) |
| #define | INF_STATUS_SUCCESS STATUS_SUCCESS |
| #define | INF_STATUS_NO_MEMORY STATUS_NO_MEMORY |
| #define | INF_STATUS_INVALID_PARAMETER STATUS_INVALID_PARAMETER |
| #define | INF_STATUS_NOT_FOUND STATUS_NOT_FOUND |
| #define | INF_STATUS_BUFFER_OVERFLOW STATUS_BUFFER_OVERFLOW |
| #define | INF_SUCCESS(x) (0 <= (x)) |
| #define | STRFMT "%S" |
Variables |
| PVOID | InfpHeap |