about summary refs log tree commit diff stats
path: root/src/include/cleanup.h
blob: 99c13b3697a8afeeccf5337ef960c7f588206b66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __CLEANUP_H_
#define __CLEANUP_H_

#include "elfloader.h"

typedef struct x64emu_s x64emu_t;

void AddCleanup(x64emu_t *emu, void *p);
void AddCleanup1Arg(x64emu_t *emu, void *p, void* a, elfheader_t* h);
void CallCleanup(x64emu_t *emu, elfheader_t* h);
void CallAllCleanup(x64emu_t *emu);

#endif // __CLEANUP_H_