blob: a6b00fea673388b132f0beefca102af4bf10a636 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __BOX64_STACK_H_
#define __BOX64_STACK_H_
#include <stdint.h>
typedef struct box64context_s box64context_t;
//typedef struct x64emu_s x64emu_t;
int CalcStackSize(box64context_t *context);
//void SetupInitialStack(x64emu_t *emu);
//uint16_t Pop16(x64emu_t *emu);
//void Push16(x64emu_t *emu, uint16_t v);
//uint32_t Pop32(x64emu_t *emu);
//void Push32(x64emu_t *emu, uint32_t v);
#endif //__BOX64_STACK_H_
|