📄 imports.h
字号:
/* imports.h * * $Id: imports.h,v 1.3 2004/01/18 19:29:18 whamann Exp $ * * Notice: This header file contains declarations of functions and types that * are just used internally. All library functions and types that are supposed * to be publicly accessable are defined in ./src/ming.h. */#ifndef SWF_IMPORTS_H_INCLUDED#define SWF_IMPORTS_H_INCLUDED#include "ming.h"#include "block.h"struct importitem{ struct importitem *next; int id; char *name;};struct SWFImportBlock_s{ struct SWFBlock_s block; char *filename; struct importitem *importlist;};typedef struct SWFImportBlock_s *SWFImportBlock;SWFImportBlock newSWFImportBlock(const char *filename);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -