mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboAutoMod.git
synced 2026-06-13 09:16:01 +00:00
17 lines
238 B
C
17 lines
238 B
C
#ifndef _MEM_DUMP_USB_SERVER_H_
|
|
#define _MEM_DUMP_USB_SERVER_H_
|
|
|
|
#if __arm__
|
|
typedef u32 uint32_t;
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
struct mem_dumper_args_s {
|
|
uint32_t start;
|
|
uint32_t len;
|
|
};
|
|
|
|
#endif
|
|
|