SDC C-Project CF Review 프로그램
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * 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