mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 03:11:28 +00:00
c5303272d9
- r_cons_user_fgets() is a configurable function pointer - Simplify build * Initial import of r_sysproxy - Directly copied from r1 (no api or anything working yet) * R_APIze r_vm and r_print * Make r_core_seek more consistent * Move r_cons_progressbar() to r_print * Rename visual 'x' -> 'w' (oops) - 'a' and 'w' are now compatible with cursor mode * Implement r_sys_usleep() on w32 and fix r_sys_sleep()
23 lines
267 B
C
23 lines
267 B
C
#ifndef SP_H
|
|
#define SP_H
|
|
|
|
#define MAX_PACKET 2048
|
|
|
|
struct regs {
|
|
unsigned int edi;
|
|
unsigned int esi;
|
|
unsigned int ebp;
|
|
unsigned int xx;
|
|
unsigned int ebx;
|
|
unsigned int edx;
|
|
unsigned int ecx;
|
|
unsigned int eax;
|
|
};
|
|
|
|
struct arg {
|
|
char *buf;
|
|
int len;
|
|
};
|
|
|
|
#endif
|