Changeset 225 for trunk/src/user32/initterm.cpp
- Timestamp:
- Jun 27, 1999, 6:24:19 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/initterm.cpp
r134 r225 1 /* $Id: initterm.cpp,v 1. 4 1999-06-20 16:47:39sandervl Exp $ */1 /* $Id: initterm.cpp,v 1.5 1999-06-27 16:23:23 sandervl Exp $ */ 2 2 3 3 /* … … 35 35 #include <win32type.h> 36 36 #include <wndclass.h> 37 #include <spy.h> 37 38 38 39 extern "C" { … … 59 60 /*-------------------------------------------------------------------*/ 60 61 static void APIENTRY cleanup(ULONG reason); 62 static void APIENTRY cleanupQueue(ULONG ulReason); 61 63 62 64 … … 105 107 return 0UL; 106 108 109 rc = DosExitList(0x00008000|EXLST_ADD, cleanupQueue); 110 if(rc) 111 return 0UL; 112 107 113 //SvL: 18-7-'98, Register system window classes (button, listbox etc etc) 108 114 RegisterSystemClasses(hModule); 115 116 //SvL: Try to start communication with our message spy queue server 117 InitSpyQueue(); 109 118 break; 110 119 case 1 : … … 120 129 } 121 130 131 static void APIENTRY cleanupQueue(ULONG ulReason) 132 { 133 CloseSpyQueue(); 134 } 122 135 123 136 static void APIENTRY cleanup(ULONG ulReason)
Note:
See TracChangeset
for help on using the changeset viewer.