Changeset 3501 for trunk/src/kernel32/misc.cpp
- Timestamp:
- May 9, 2000, 8:56:59 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/misc.cpp
r3483 r3501 1 /* $Id: misc.cpp,v 1.2 2 2000-05-02 20:53:13sandervl Exp $ */1 /* $Id: misc.cpp,v 1.23 2000-05-09 18:56:09 sandervl Exp $ */ 2 2 3 3 /* … … 245 245 static BOOL fLogging = TRUE; 246 246 static int dwEnableLogging = 1; 247 static int oldcrtmsghandle = 0; 247 248 248 249 //#define CHECK_ODINHEAP … … 278 279 flog = fopen(logname, "w"); 279 280 } 281 oldcrtmsghandle = _set_crt_msg_handle(fileno(flog)); 280 282 } 281 283 else … … 411 413 void CloseLogFile() 412 414 { 415 if(oldcrtmsghandle) 416 _set_crt_msg_handle(oldcrtmsghandle); 417 413 418 fclose(flog); 414 419 flog = 0;
Note:
See TracChangeset
for help on using the changeset viewer.