Changeset 18 for trunk/include
- Timestamp:
- Jan 1, 2001, 4:30:29 PM (25 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/comctl.h
r14 r18 72 72 ULONG ulAttr; 73 73 PFNWP OldStaticProc; 74 RECTL rclBar;75 74 } PROGRESSBARDATA, *PPROGRESSBARDATA; 76 75 -
trunk/include/helpers/dosh.h
r17 r18 374 374 375 375 APIRET doshSetEnvironmentVar(PDOSENVIRONMENT pEnv, 376 PSZ pszNewEnv); 376 PSZ pszNewEnv, 377 BOOL fAddFirst); 377 378 378 379 APIRET doshConvertEnvironment(PDOSENVIRONMENT pEnv, … … 392 393 * old DOS EXE header at offset 0 393 394 * in any EXE file. 395 * 396 *@@changed V0.9.7 (2000-12-20) [umoeller]: fixed NE offset 394 397 */ 395 398 … … 419 422 ULONG ulUnused6; // 34: 420 423 ULONG ulUnused7; // 38: 421 USHORT usNewHeaderOfs; // new header ofs (if 0x18 > 0x40) 424 ULONG ulNewHeaderOfs; // new header ofs (if 0x18 > 0x40) 425 // fixed this from USHORT, thanks Martin Lafaix 426 // V0.9.7 (2000-12-20) [umoeller] 422 427 } DOSEXEHEADER, *PDOSEXEHEADER; 423 428 … … 440 445 CHAR achNE[2]; // 00: NE 441 446 BYTE bLinkerVersion; // 02: linker version 442 BYTE bL linkerRevision;// 03: linker revision447 BYTE bLinkerRevision; // 03: linker revision 443 448 USHORT usEntryTblOfs; // 04: ofs from this to entrytable 444 449 USHORT usEntryTblLen; // 06: length of entrytable -
trunk/include/helpers/gpih.h
r14 r18 154 154 LONG lPointSize); 155 155 156 LONG gpihQueryLineSpacing(HPS hps, 157 PSZ pszText); 156 LONG gpihQueryLineSpacing(HPS hps); 158 157 159 158 /* ****************************************************************** -
trunk/include/helpers/threads.h
r14 r18 36 36 #define THRF_PMMSGQUEUE 0x0001 37 37 #define THRF_WAIT 0x0002 38 #define THRF_TRANSIENT 0x0004 38 39 39 40 /* -
trunk/include/helpers/xstring.h
r15 r18 58 58 typedef XSTRINITSET *PXSTRINITSET; 59 59 60 void XWPENTRY xstrInitCopy(PXSTRING pxstr, const char *pcszSource );61 typedef void XWPENTRY XSTRINITCOPY(PXSTRING pxstr, const char *pcszSource );60 void XWPENTRY xstrInitCopy(PXSTRING pxstr, const char *pcszSource, ULONG ulExtraAllocate); 61 typedef void XWPENTRY XSTRINITCOPY(PXSTRING pxstr, const char *pcszSource, ULONG ulExtraAllocate); 62 62 typedef XSTRINITCOPY *PXSTRINITCOPY; 63 63
Note:
See TracChangeset
for help on using the changeset viewer.