Changeset 168 for trunk/include/helpers
- Timestamp:
- Jun 2, 2002, 10:50:25 PM (23 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/comctl.h
r159 r168 1059 1059 BOOL ctlMakeHotkeyEntryField(HWND hwndHotkeyEntryField); 1060 1060 1061 /* ****************************************************************** 1062 * 1063 * Color rectangle 1064 * 1065 ********************************************************************/ 1066 1067 BOOL ctlMakeColorRect(HWND hwndStatic); 1068 typedef BOOL CTLMAKECOLORRECT(HWND hwndStatic); 1069 typedef CTLMAKECOLORRECT *PCTLMAKECOLORRECT; 1070 1061 1071 #endif 1062 1072 -
trunk/include/helpers/dialog.h
r166 r168 479 479 } DLGARRAY, *PDLGARRAY; 480 480 481 APIRET dlghCreateArray(ULONG cMaxItems, 482 PDLGARRAY *ppArray); 481 APIRET dlghCreateArray(ULONG cMaxItems, PDLGARRAY *ppArray); 482 typedef APIRET DLGHCREATEARRAY(ULONG cMaxItems, PDLGARRAY *ppArray); 483 typedef DLGHCREATEARRAY *PDLGHCREATEARRAY; 483 484 484 485 APIRET dlghFreeArray(PDLGARRAY *ppArray); 486 typedef APIRET DLGHFREEARRAY(PDLGARRAY *ppArray); 487 typedef DLGHFREEARRAY *PDLGHFREEARRAY; 485 488 486 489 APIRET dlghAppendToArray(PDLGARRAY pArray, 487 490 PCDLGHITEM paItems, 488 491 ULONG cItems); 492 typedef APIRET DLGHAPPENDTOARRAY(PDLGARRAY pArray, 493 PCDLGHITEM paItems, 494 ULONG cItems); 495 typedef DLGHAPPENDTOARRAY *PDLGHAPPENDTOARRAY; 489 496 490 497 /* ******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.