|
|
| version 1.10, 2007/11/11 07:11:28 | version 1.13, 2007/12/17 14:52:56 |
|---|---|
| Line 1 | Line 1 |
| typedef struct { | |
| const TCHAR *title; | |
| const TCHAR *ext; | |
| const TCHAR *filter; | |
| int defindex; | |
| } FILESEL; | |
| struct tagFileSelectParam | struct tagFileSelectParam |
| { | { |
| LPTSTR lpszTitle; | LPTSTR lpszTitle; |
| Line 26 typedef struct tagCBParam CBPARAM; | Line 19 typedef struct tagCBParam CBPARAM; |
| typedef struct tagCBParam *PCBPARAM; | typedef struct tagCBParam *PCBPARAM; |
| typedef const struct tagCBParam *PCCBPARAM; | typedef const struct tagCBParam *PCCBPARAM; |
| extern const TCHAR str_nc[]; | struct tagCBNParam |
| extern const TCHAR str_int0[]; | { |
| extern const TCHAR str_int1[]; | UINT uValue; |
| extern const TCHAR str_int2[]; | int nItemData; |
| extern const TCHAR str_int4[]; | }; |
| extern const TCHAR str_int5[]; | typedef struct tagCBNParam CBNPARAM; |
| extern const TCHAR str_int6[]; | typedef struct tagCBNParam *PCBNPARAM; |
| typedef const struct tagCBNParam *PCCBNPARAM; | |
| #define SetDlgItemCheck(a, b, c) \ | #define SetDlgItemCheck(a, b, c) \ |
| SendDlgItemMessage((a), (b), BM_SETCHECK, (c), 0) | SendDlgItemMessage((a), (b), BM_SETCHECK, (c), 0) |
| Line 67 void dlgs_browsemimpidef(HWND hWnd, UINT | Line 62 void dlgs_browsemimpidef(HWND hWnd, UINT |
| void dlgs_setliststr(HWND hWnd, UINT16 res, const TCHAR **item, UINT items); | void dlgs_setliststr(HWND hWnd, UINT16 res, const TCHAR **item, UINT items); |
| void dlgs_setlistuint32(HWND hWnd, UINT16 res, const UINT32 *item, UINT items); | void dlgs_setlistuint32(HWND hWnd, UINT16 res, const UINT32 *item, UINT items); |
| void dlgs_setcbitem(HWND hWnd, UINT uID, PCCBPARAM pItem, UINT uItems); | void dlgs_setcbitem(HWND hWnd, UINT uID, PCCBPARAM pcItem, UINT uItems); |
| void dlgs_setcbnumber(HWND hWnd, UINT uID, PCCBNPARAM pcItem, UINT uItems); | |
| void dlgs_setcbcur(HWND hWnd, UINT uID, int nItemData); | void dlgs_setcbcur(HWND hWnd, UINT uID, int nItemData); |
| int dlgs_getcbcur(HWND hWnd, UINT uID, int nDefault); | int dlgs_getcbcur(HWND hWnd, UINT uID, int nDefault); |