Changeset 1038 for trunk/dll/killproc.c
- Timestamp:
- Jul 4, 2008, 10:33:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/killproc.c
r1036 r1038 84 84 MODINFO *pmi; 85 85 86 # ifdef FORTIFY 87 Fortify_EnterScope(); 88 # endif 86 89 thab = WinInitialize(0); 87 90 thmq = WinCreateMsgQueue(thab, 0); … … 134 137 DecrThreadUsage(); 135 138 WinTerminate(thab); 139 # ifdef FORTIFY 140 Fortify_LeaveScope(); 141 # endif 136 142 } 137 143 … … 147 153 QSLREC *pmi; 148 154 155 # ifdef FORTIFY 156 Fortify_EnterScope(); 157 # endif 149 158 thab = WinInitialize(0); 150 159 thmq = WinCreateMsgQueue(thab, 0); … … 197 206 DecrThreadUsage(); 198 207 WinTerminate(thab); 208 # ifdef FORTIFY 209 Fortify_LeaveScope(); 210 # endif 199 211 } 200 212 … … 215 227 DosError(FERR_DISABLEHARDERR); 216 228 229 # ifdef FORTIFY 230 Fortify_EnterScope(); 231 # endif 217 232 thab = WinInitialize(0); 218 233 thmq = WinCreateMsgQueue(thab, 0); 219 234 WinCancelShutdown(thmq, TRUE); 220 235 IncrThreadUsage(); 221 # ifdef FORTIFY222 Fortify_EnterScope();223 # endif224 236 225 237 WinSendDlgItemMsg(hwnd, KILL_LISTBOX, LM_DELETEALL, MPVOID, MPVOID); … … 289 301 } 290 302 fclose(fp); 291 # ifdef FORTIFY292 Fortify_LeaveScope(pszSrcFile, __LINE__);293 # endif294 303 } 295 304 Abort: … … 299 308 DecrThreadUsage(); 300 309 WinTerminate(thab); 310 # ifdef FORTIFY 311 Fortify_LeaveScope(); 312 # endif 301 313 } 302 314
Note:
See TracChangeset
for help on using the changeset viewer.