dialog.h
来自「美国Delta Tau公司PMAC多轴运动控制卡的VC++示例程序」· C头文件 代码 · 共 33 行
H
33 行
/*
* dialog.h
*
* 32-bit Motion Control Device Driver
*
*/
#ifdef __cplusplus
extern "C" {
#endif
typedef struct tag_combobox_entry {
DWORD wValue;
LPTSTR szText;
} COMBOBOX_ENTRY;
LRESULT ConfigRemove(DWORD dwDevice, HWND hDlg );
int Config( HWND hWnd, PREG_ACCESS pRegAccess );
VOID ConfigErrorMsgBox( HWND hDlg, DWORD wStringId );
int ConfigLoadComboBox( HWND hDlg, int wID, COMBOBOX_ENTRY *pCBE, int nEntries, DWORD wInitialValue );
DWORD ConfigGetComboBoxValue( HWND hDlg, int wID, COMBOBOX_ENTRY *pCBE );
int ConfigSetComboBoxSelection( HWND hDlg, int wID, COMBOBOX_ENTRY *pCBE, int nEntries, DWORD dwSelectValue );
DWORD ConfigGetEditValue( HWND hDlg, int wID, int numberbase );
DWORD ConfigConfirmLegalValue( COMBOBOX_ENTRY *pCBE, int nEntries, DWORD wValueToTest );
long CALLBACK PmacSelect( HWND hWnd );
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?