OSDN Git Service

545718fea1a751f285261508419d5e3f6c203d48
[unagi/old-svn-converted.git] / client / trunk / anago / script_dump.h
1 #ifndef _SCRIPT_DUMP_H_
2 #define _SCRIPT_DUMP_H_
3 struct dump_config{
4         const char *script;
5         const char *target;
6         const struct reader_handle *handle;
7         const struct reader_control *control;
8         struct dump_memory_driver{
9                 const struct reader_memory_access *access;
10                 struct memory memory;
11                 long read_count, increase;
12                 struct gauge gauge;
13         }cpu, ppu;
14         long mappernum;
15         bool progress;
16         bool battery;
17         struct textcontrol log;
18         void (*except)(const char *str);
19 };
20 void script_dump_execute(struct dump_config *c);
21 #endif