mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-25 14:33:56 +00:00
Initial Commit
This commit is contained in:
23
thirdparty/capstone/windows/winkernel_mm.h
vendored
Normal file
23
thirdparty/capstone/windows/winkernel_mm.h
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/* Capstone Disassembly Engine */
|
||||
/* By Satoshi Tanda <tanda.sat@gmail.com>, 2016 */
|
||||
|
||||
#ifndef CS_WINDOWS_WINKERNEL_MM_H
|
||||
#define CS_WINDOWS_WINKERNEL_MM_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <capstone/capstone.h>
|
||||
|
||||
void CAPSTONE_API cs_winkernel_free(void *ptr);
|
||||
void * CAPSTONE_API cs_winkernel_malloc(size_t size);
|
||||
void * CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size);
|
||||
void * CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size);
|
||||
int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // CS_WINDOWS_WINKERNEL_MM_H
|
Reference in New Issue
Block a user