#include <wdm.h>
Go to the source code of this file.
◆ BYTE_ORDER
Definition at line 27 of file cc.h.
◆ LWIP_CHKSUM_ALGORITHM
#define LWIP_CHKSUM_ALGORITHM 3 |
Definition at line 30 of file cc.h.
◆ LWIP_PLATFORM_ASSERT
Definition at line 34 of file cc.h.
◆ LWIP_PLATFORM_DIAG
Definition at line 33 of file cc.h.
◆ PACK_STRUCT_STRUCT
Definition at line 42 of file cc.h.
◆ PACK_STRUCT_USE_INCLUDES
#define PACK_STRUCT_USE_INCLUDES |
Definition at line 43 of file cc.h.
◆ S16_F
Definition at line 20 of file cc.h.
◆ S32_F
Definition at line 23 of file cc.h.
◆ SYS_ARCH_DECL_PROTECT
Definition at line 37 of file cc.h.
◆ SYS_ARCH_PROTECT
Definition at line 38 of file cc.h.
◆ SYS_ARCH_UNPROTECT
Definition at line 39 of file cc.h.
◆ U16_F
Definition at line 19 of file cc.h.
◆ U32_F
Definition at line 22 of file cc.h.
◆ X16_F
Definition at line 21 of file cc.h.
◆ X32_F
Definition at line 24 of file cc.h.
◆ calloc()
Definition at line 157 of file cabinet.c.
158{
160}
PVOID NTAPI RtlAllocateHeap(IN PVOID HeapHandle, IN ULONG Flags, IN SIZE_T Size)
◆ free()
Definition at line 151 of file cabinet.c.
152{
154}
BOOLEAN NTAPI RtlFreeHeap(IN PVOID HeapHandle, IN ULONG Flags, IN PVOID HeapBase)
◆ malloc()
◆ realloc()
Definition at line 33 of file memory.c.
34{
35 void* new_mem;
36
37
40 }
41
42
46 }
47
48
50 if (new_mem ==
NULL) {
51
53 }
54
55
57
58
60
61
62 return new_mem;
63}
#define RtlCopyMemory(Destination, Source, Length)