Files
weee/windows/winkernel_mm.h
T
iris 802798ce3c Squashed 'external/capstone/' content from commit e46f64fa
git-subtree-dir: external/capstone
git-subtree-split: e46f64fadb351e9ecd05264fab26f2772feb0994
2026-05-11 11:55:07 +02:00

25 lines
632 B
C

/* 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