|
|
| version 1.6, 2005/03/20 13:12:50 | version 1.8, 2006/12/24 00:52:30 |
|---|---|
| Line 1 | Line 1 |
| #ifdef STRICT | |
| #define SUBCLASSPROC WNDPROC | |
| #else | |
| #define SUBCLASSPROC FARPROC | |
| #endif | |
| typedef struct { | typedef struct { |
| const TCHAR *title; | const TCHAR *title; |
| const TCHAR *ext; | const TCHAR *ext; |
| Line 24 extern const TCHAR str_int6[]; | Line 18 extern const TCHAR str_int6[]; |
| SendDlgItemMessage((a), (b), BM_SETCHECK, (c), 0) | SendDlgItemMessage((a), (b), BM_SETCHECK, (c), 0) |
| #define GetDlgItemCheck(a, b) \ | #define GetDlgItemCheck(a, b) \ |
| (((int)SendDlgItemMessage((a), (b), BM_GETCHECK, 0, 0))?1:0) | (((int)SendDlgItemMessage((a), (b), BM_GETCHECK, 0, 0)) != 0) |
| #define AVE(a, b) \ | #define AVE(a, b) \ |
| (((a) + (b)) / 2) | (((a) + (b)) / 2) |