📄 exec2obj.h
字号:
/* Name: exec2obj.h Date: February 24th 2003 Author: Steve Muckle Provides the interface to access user programs compiled as const char arrays.*/#ifndef _EXEC2OBJ_H#define _EXEC2OBJ_H/* Format of entries in the table of contents. */typedef struct { const char execname[256]; const char* execbytes; int execlen;} exec2obj_userapp_TOC_entry;/* The number of user executables in the table of contents. */const int exec2obj_userapp_count;/* The table of contents. */const exec2obj_userapp_TOC_entry exec2obj_userapp_TOC[128];#endif /* _EXEC2OBJ_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -