File size: 259 Bytes
21caab1
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#ifndef __MEMORY_H
#define __MEMORY_H
#include <windows.h>

void _mem_initialize();
void _hfree(void* mem);
void* _halloc(SIZE_T count);
void _memset(void* mem, BYTE val, SIZE_T count);
void _memcpy(void* dst, const void* src, SIZE_T count);

#endif