?? 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 + -