- Timestamp:
- Aug 17, 1999, 9:30:50 PM (26 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/profile.cpp
r529 r537 1 /* $Id: profile.cpp,v 1. 9 1999-08-17 16:35:10phaller Exp $ */1 /* $Id: profile.cpp,v 1.10 1999-08-17 19:30:49 phaller Exp $ */ 2 2 3 3 /* … … 1403 1403 for(x = 1;x < N_CACHED_PROFILES;x++) 1404 1404 { 1405 if (MRUProfile[x]->filename) 1406 { 1407 CurProfile = MRUProfile[x]; 1408 PROFILE_FlushFile(); 1409 } 1405 if (MRUProfile[x]) 1406 if (MRUProfile[x]->filename) 1407 { 1408 CurProfile = MRUProfile[x]; 1409 PROFILE_FlushFile(); 1410 } 1410 1411 } 1411 1412 CurProfile = lastCurProfile; -
trunk/src/lz32/initterm.cpp
r511 r537 1 /* $Id: initterm.cpp,v 1. 3 1999-08-16 16:55:32 sandervlExp $ */1 /* $Id: initterm.cpp,v 1.4 1999-08-17 19:30:49 phaller Exp $ */ 2 2 3 3 /* … … 34 34 #include <misc.h> /*PLF Wed 98-03-18 23:18:15*/ 35 35 36 extern "C" {37 void CDECL _ctordtorInit( void );38 void CDECL _ctordtorTerm( void );39 }40 41 36 /*-------------------------------------------------------------------*/ 42 37 /* A clean up routine registered with DosExitList must be used if */ … … 56 51 /* calling this function. */ 57 52 /****************************************************************************/ 58 unsigned long SYSTEM _DLL_InitTerm(unsigned long hModule, unsigned long59 u lFlag)53 unsigned long SYSTEM _DLL_InitTerm(unsigned long hModule, 54 unsigned long ulFlag) 60 55 { 61 size_t i;62 56 APIRET rc; 63 57 … … 70 64 switch (ulFlag) { 71 65 case 0 : 72 _ctordtorInit();73 66 74 67 /*******************************************************************/ … … 97 90 static void APIENTRY cleanup(ULONG ulReason) 98 91 { 99 _ctordtorTerm();100 92 DosExitList(EXLST_EXIT, cleanup); 101 93 return ; -
trunk/src/lz32/lz32.cpp
r530 r537 1 /* $Id: lz32.cpp,v 1. 5 1999-08-17 16:58:34 sandervlExp $ */1 /* $Id: lz32.cpp,v 1.6 1999-08-17 19:30:49 phaller Exp $ */ 2 2 3 3 /* … … 15 15 #include <ctype.h> 16 16 #include <odin.h> 17 #include <os2sel.h> 18 #include <odinwrap.h> 17 19 #include <windef.h> 18 20 #include <winbase.h> … … 21 23 #include <lz32.h> 22 24 #include "debugtools.h" 23 #include <odinwrap.h>24 25 25 26 -
trunk/src/lz32/makefile
r510 r537 1 # $Id: makefile,v 1. 2 1999-08-16 16:28:03 sandervlExp $1 # $Id: makefile,v 1.3 1999-08-17 19:30:50 phaller Exp $ 2 2 3 3 # … … 30 30 $(PDWIN32_LIB)\odincrt.lib \ 31 31 $(PDWIN32_LIB)\kernel32.lib \ 32 os2386.lib cppom30O.lib \ 32 os2386.lib \ 33 sbsstub.obj \ 33 34 $(TARGET).def 34 35 $(CP) $@ $(PDWIN32_BIN)
Note:
See TracChangeset
for help on using the changeset viewer.