mdl.h
来自「db.* (pronounced dee-be star) is an adva」· C头文件 代码 · 共 43 行
H
43 行
/*************************************************************************** * * * db.* * * open source database, ida utility * * * * Copyright (c) 2000 Centura Software Corporation. All rights reserved. * * * * Use of this software, whether in source code format, or in executable, * * binary object code form, is governed by the CENTURA OPEN SOURCE LICENSE * * which is fully described in the LICENSE.TXT file, included within this * * distribution of source code files. * * * **************************************************************************//* Menu Definition Language Table type definitions */typedef struct{ char *title; /* menu title */ int first_cmd; /* index of first command in menu */} MENU;typedef struct{ int next; /* index of next command entry */ int prev; /* index of previous command entry */ int colpos; /* column position for this command * word */ char *word; /* command word */ char *desc; /* command description */ int action; /* action to be taken: -1 => * nothing 0..no_of_menus-1 => * process new menu */ void (*fcn) (void); /* pointer to function to be called */ int finish; /* where to go when done: 0 = * return to parent menu, 1 = * repeat this menu 2 = break to * root menu, 3 = exit menu * processor */} COMMAND;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?