18#define FREE(Area) free(Area)
19#define MALLOC(Size) malloc((size_t)(Size))
20#define ZEROMEMORY(Area, Size) memset((Area), '\0', (size_t)(Size))
21#define MEMCPY(Dest, Src, Size) memcpy((Dest), (Src), (size_t)(Size))
23#define STATUS_SUCCESS 0
24#define INF_STATUS_SUCCESS 0
25#define INF_STATUS_NO_MEMORY ENOMEM
26#define INF_STATUS_INVALID_PARAMETER EINVAL
27#define INF_STATUS_NOT_FOUND ENOENT
28#define INF_STATUS_BUFFER_OVERFLOW E2BIG
29#define INF_SUCCESS(x) (0 == (x))
39#define IS_TEXT_UNICODE_ASCII16 1
40#define IS_TEXT_UNICODE_REVERSE_ASCII16 16
41#define IS_TEXT_UNICODE_STATISTICS 2
42#define IS_TEXT_UNICODE_REVERSE_STATISTICS 32
43#define IS_TEXT_UNICODE_CONTROLS 4
44#define IS_TEXT_UNICODE_REVERSE_CONTROLS 64
45#define IS_TEXT_UNICODE_SIGNATURE 8
46#define IS_TEXT_UNICODE_REVERSE_SIGNATURE 128
47#define IS_TEXT_UNICODE_ILLEGAL_CHARS 256
48#define IS_TEXT_UNICODE_ODD_LENGTH 512
49#define IS_TEXT_UNICODE_NULL_BYTES 4096
50#define IS_TEXT_UNICODE_UNICODE_MASK 15
51#define IS_TEXT_UNICODE_REVERSE_MASK 240
52#define IS_TEXT_UNICODE_NOT_UNICODE_MASK 3840
53#define IS_TEXT_UNICODE_NOT_ASCII_MASK 61440
62#define WIN32_NO_STATUS
72#define FREE(Area) RtlFreeHeap(InfpHeap, 0, (Area))
73#define MALLOC(Size) RtlAllocateHeap(InfpHeap, 0, (Size))
74#define ZEROMEMORY(Area, Size) RtlZeroMemory((Area), (Size))
75#define MEMCPY(Dest, Src, Size) RtlCopyMemory((Dest), (Src), (Size))
77#define INF_STATUS_SUCCESS STATUS_SUCCESS
78#define INF_STATUS_NO_MEMORY STATUS_NO_MEMORY
79#define INF_STATUS_INVALID_PARAMETER STATUS_INVALID_PARAMETER
80#define INF_STATUS_NOT_FOUND STATUS_NOT_FOUND
81#define INF_STATUS_BUFFER_OVERFLOW STATUS_BUFFER_OVERFLOW
82#define INF_SUCCESS(x) (0 <= (x))
88#include <wine/unicode.h>
GLenum GLuint GLenum GLsizei const GLchar * buf
NTSYSAPI BOOLEAN NTAPI RtlIsTextUnicode(_In_ CONST VOID *Buffer, _In_ INT Size, _Inout_opt_ INT *Flags)
_Use_decl_annotations_ NTSTATUS NTAPI RtlMultiByteToUnicodeN(_Out_ PWCH UnicodeString, _In_ ULONG UnicodeSize, _Out_opt_ PULONG ResultSize, _In_ PCCH MbString, _In_ ULONG MbSize)
WDF_EXTERN_C_START typedef _Must_inspect_result_ _In_opt_ PCUNICODE_STRING UnicodeString