Go to the source code of this file.
◆ LWIP_TAG
◆ calloc()
Definition at line 14 of file memory.c.
15{
17
19
21
23}
GLuint GLuint GLsizei count
#define RtlZeroMemory(Destination, Length)
◆ free()
Definition at line 26 of file memory.c.
27{
29}
#define ExFreePoolWithTag(_P, _T)
◆ malloc()
Definition at line 8 of file memory.c.
9{
11}
#define ExAllocatePoolWithTag(hernya, size, tag)
◆ 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)