exec2obj.h

来自「操作系统试验!通过这个试验」· C头文件 代码 · 共 27 行

H
27
字号
/*  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 + =
减小字号Ctrl + -
显示快捷键?