Rizin
unix-like reverse engineering framework and cli tools
winkernel_mm.h
Go to the documentation of this file.
1 /* Capstone Disassembly Engine */
2 /* By Satoshi Tanda <tanda.sat@gmail.com>, 2016 */
3 
4 #ifndef CS_WINDOWS_WINKERNEL_MM_H
5 #define CS_WINDOWS_WINKERNEL_MM_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 #include <capstone/capstone.h>
12 
13 void CAPSTONE_API cs_winkernel_free(void *ptr);
15 void * CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size);
16 void * CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size);
17 int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif // CS_WINDOWS_WINKERNEL_MM_H
#define CAPSTONE_API
Definition: capstone.h:32
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void count
Definition: sflib.h:98
voidpf void uLong size
Definition: ioapi.h:138
int n
Definition: mipsasm.c:19
Definition: buffer.h:15
void *CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size)
Definition: winkernel_mm.c:69
int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr)
Definition: winkernel_mm.c:99
void CAPSTONE_API cs_winkernel_free(void *ptr)
Definition: winkernel_mm.c:21
void *CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size)
Definition: winkernel_mm.c:56
void *CAPSTONE_API cs_winkernel_malloc(size_t size)
Definition: winkernel_mm.c:29