Changeset 46 for trunk/include
- Timestamp:
- Mar 13, 2001, 9:56:01 AM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/cnrh.h
r41 r46 390 390 * -- CV_DETAIL: details view without column headers 391 391 * -- CV_DETAIL | CA_DETAILSVIEWTITLES: details view _with_ column headers 392 * 393 * <B>Mini icons:</B> 394 * 395 * This is especially sick. The CV_MINI style in CNRINFO is only 396 * supported for "pure" icon view. For details and tree views, 397 * you must instead set the (half-documented) CCS_MINICONS style 398 * as a _window_ style on the container. Whoever came up with this. 392 399 * 393 400 * <B>Target emphasis:</B> … … 416 423 * CA_TITLERIGHT). 417 424 * 418 * Note that CV_MINI is only supported for "pure" icon view.419 *420 425 *@@added V0.9.0 421 426 */ -
trunk/include/helpers/dosh.h
r43 r46 442 442 * linear executable (LX) header format, 443 443 * which comes after the DOS header in the 444 * EXE file (at DOSEXEHEADER.u sNewHeaderOfs).444 * EXE file (at DOSEXEHEADER.ulNewHeaderOfs). 445 445 */ 446 446 … … 483 483 * linear executable (LX) header format, 484 484 * which comes after the DOS header in the 485 * EXE file (at DOSEXEHEADER.u sNewHeaderOfs).485 * EXE file (at DOSEXEHEADER.ulNewHeaderOfs). 486 486 */ 487 487 … … 542 542 #pragma pack() 543 543 544 /* 545 *@@ FSYSMODULE: 546 * 547 *@@added V0.9.9 (2001-03-11) [lafaix] 548 */ 549 550 typedef struct _FSYSMODULE 551 { 552 CHAR achModuleName[128]; 553 } FSYSMODULE, *PFSYSMODULE; 554 555 /* 556 *@@ FSYSFUNCTION: 557 * 558 *@@added V0.9.9 (2001-03-11) [lafaix] 559 */ 560 561 typedef struct _FSYSFUNCTION 562 { 563 ULONG ulOrdinal; 564 ULONG ulType; 565 CHAR achFunctionName[128]; 566 } FSYSFUNCTION, *PFSYSFUNCTION; 567 568 /* 569 *@@ FSYSRESOURCE: 570 * 571 *@@added V0.9.7 (2000-12-18) [lafaix] 572 */ 573 574 typedef struct _FSYSRESOURCE 575 { 576 ULONG ulID; // resource ID 577 ULONG ulType; // resource type 578 ULONG ulSize; // resource size in bytes 579 ULONG ulFlag; // resource flags 580 } FSYSRESOURCE, *PFSYSRESOURCE; 581 582 // object/segment flags (in NE and LX) 583 #define OBJWRITE 0x0002L // Writeable Object 584 #define OBJDISCARD 0x0010L // Object is Discardable 585 #define OBJSHARED 0x0020L // Object is Shared 586 #define OBJPRELOAD 0x0040L // Object has preload pages 587 588 // resource flags 589 #define RNMOVE 0x0010 // Moveable resource 590 #define RNPURE 0x0020 // Pure (read-only) resource 591 #define RNPRELOAD 0x0040 // Preloaded resource 592 #define RNDISCARD 0xF000 // Discard priority level for resource 593 544 594 // EXE format 545 595 #define EXEFORMAT_OLDDOS 1 … … 622 672 623 673 APIRET doshExecQueryBldLevel(PEXECUTABLE pExec); 674 675 PFSYSRESOURCE doshExecQueryResources(PEXECUTABLE pExec, 676 PULONG pcResources); 677 678 APIRET doshExecFreeResources(PFSYSRESOURCE paResources); 679 680 PFSYSMODULE doshExecQueryImportedModules(PEXECUTABLE pExec, 681 PULONG pcModules); 682 683 APIRET doshExecFreeImportedModules(PFSYSMODULE paModules); 684 685 PFSYSFUNCTION doshExecQueryExportedFunctions(PEXECUTABLE pExec, 686 PULONG pcFunctions); 687 688 APIRET doshExecFreeExportedFunctions(PFSYSFUNCTION paFunctions); 624 689 625 690 /******************************************************************** -
trunk/include/helpers/winh.h
r45 r46 637 637 typedef WINHFREE *PWINHFREE; 638 638 639 VOID XWPENTRY winhSleep( HAB hab,ULONG ulSleep);639 VOID XWPENTRY winhSleep(ULONG ulSleep); 640 640 641 641 #define WINH_FOD_SAVEDLG 0x0001
Note:
See TracChangeset
for help on using the changeset viewer.