📄 apdialog.h
字号:
/***********************************************************************//* *//* MODULE: apdialog.h 1.3 *//* DATE: 17:58:19 - 97/12/05 *//* PURPOSE: Function prototypes for application/dialog interface *//* *//*---------------------------------------------------------------------*//* *//* Copyright 1991 - 1993, Integrated Systems, Inc. *//* ALL RIGHTS RESERVED *//* *//* Permission is hereby granted to licensees of Integrated Systems, *//* Inc. products to use or abstract this computer program for the *//* sole purpose of implementing a product based on Integrated *//* Systems, Inc. products. No other rights to reproduce, use, *//* or disseminate this computer program, whether in part or in *//* whole, are granted. *//* *//* Integrated Systems, Inc. makes no representation or warranties *//* with respect to the performance of this computer program, and *//* specifically disclaims any responsibility for any damages, *//* special or consequential, connected with the use of this program. *//* *//***********************************************************************/#if defined(__cplusplus) extern "C" {#endif/*---------------------------------------------------------------------*//* Don't allow this file to be included more than once. *//*---------------------------------------------------------------------*/#ifndef _APDIALOG_H#define _APDIALOG_H#define ULONG unsigned longtypedef enum parm_type { FLAG = 1, IP = 2, HEX = 3, DECIMAL = 4, CHAR = 5, STRING = 6 } PARM_TYPE;void AppGetdefaults(void *ParmStruct);void AppPrint(void *ParmStruct, ULONG(*PrintRoutine)(char *format, ...));void AppModify(void *ParmStruct, ULONG (*PrintRoutine)(char *format, ...), void (*PromptRoutine)(char *prompt, PARM_TYPE ptype, void *paramptr));void AppUse(void *ParmStruct);#endif#if defined(__cplusplus) }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -