9 lines
98 B
C
9 lines
98 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct stackframe {
|
||
|
struct stackframe *ebp;
|
||
|
uint32_t eip;
|
||
|
};
|