📄 sym.h
字号:
/*
* File: dbug/sym.h
* Purpose: Defintions for symbol table.
*
* Notes: This file automatically included by dbug.h
*
* Author: Eric DeVolder
* Date:
*
* Modifications:
*
*/
#ifndef _DBUG_SYM_H
#define _DBUG_SYM_H
/********************************************************************/
void
symtab_add (char *, ADDRESS);
void
symtab_add_complete (char *, int);
void
symtab_add_incomplete (int, ADDRESS);
int
symtab_convert_string (char *, ADDRESS *);
int
symtab_convert_address (ADDRESS, char *);
int
symtab_convert_address2 (ADDRESS, char *);
/********************************************************************/
#endif /* _DBUG_SYM_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -