Changeset 168 for trunk/include/helpers/dialog.h
- Timestamp:
- Jun 2, 2002, 10:50:25 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.