Changeset 1063 for trunk/dll/comp.c
- Timestamp:
- Jul 11, 2008, 5:33:36 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/comp.c
r1039 r1063 201 201 hab2 = WinInitialize(0); 202 202 if (hab2) { 203 # ifdef FORTIFY204 Fortify_EnterScope();205 # endif203 # ifdef FORTIFY 204 Fortify_EnterScope(); 205 # endif 206 206 hmq2 = WinCreateMsgQueue(hab2, 0); 207 207 if (hmq2) { … … 315 315 } 316 316 WinTerminate(hab2); 317 # ifdef FORTIFY317 # ifdef FORTIFY 318 318 Fortify_LeaveScope(); 319 # endif319 # endif 320 320 } 321 321 } … … 408 408 hab = WinInitialize(0); 409 409 if (hab) { 410 # ifdef FORTIFY411 Fortify_EnterScope();412 # endif410 # ifdef FORTIFY 411 Fortify_EnterScope(); 412 # endif 413 413 hmq = WinCreateMsgQueue(hab, 0); 414 414 if (hmq) { … … 693 693 free(cmp); 694 694 WinTerminate(hab); 695 # ifdef FORTIFY695 # ifdef FORTIFY 696 696 Fortify_LeaveScope(); 697 # endif697 # endif 698 698 } 699 699 else … … 720 720 hab = WinInitialize(0); 721 721 if (hab) { 722 # ifdef FORTIFY723 Fortify_EnterScope();724 # endif722 # ifdef FORTIFY 723 Fortify_EnterScope(); 724 # endif 725 725 hmq = WinCreateMsgQueue(hab, 0); 726 726 if (hmq) { … … 758 758 free(cmp); 759 759 WinTerminate(hab); 760 # ifdef FORTIFY760 # ifdef FORTIFY 761 761 Fortify_LeaveScope(); 762 # endif762 # endif 763 763 } 764 764 else … … 1471 1471 // 10 May 08 SHL fixme to suppress W111 1472 1472 Fortify_EnterScope(); 1473 # endif1473 # endif 1474 1474 1475 1475 if (!cmp) { 1476 1476 Runtime_Error2(pszSrcFile, __LINE__, IDS_NODATATEXT); 1477 # ifdef FORTIFY1477 # ifdef FORTIFY 1478 1478 // 10 May 08 SHL fixme to suppress W111 1479 1479 Fortify_LeaveScope(); 1480 # endif1480 # endif 1481 1481 _endthread(); 1482 1482 } … … 2102 2102 # ifdef FORTIFY 2103 2103 Fortify_LeaveScope(); 2104 # endif2104 # endif 2105 2105 2106 2106 // DbgMsg(pszSrcFile, __LINE__, "FillCnrsThread exit"); … … 2651 2651 WinCheckButton(hwnd, COMP_HIDENOTSELECTED, 0); 2652 2652 cmp->filling = TRUE; 2653 # ifdef FORTIFY2654 Fortify_EnterScope();2655 # endif2653 # ifdef FORTIFY 2654 Fortify_EnterScope(); 2655 # endif 2656 2656 forthread = xmalloc(sizeof(COMPARE), pszSrcFile, __LINE__); 2657 2657 if (!forthread) … … 2666 2666 WinDismissDlg(hwnd, 0); 2667 2667 free(forthread); 2668 # ifdef FORTIFY2669 Fortify_LeaveScope();2670 # endif2668 # ifdef FORTIFY 2669 Fortify_LeaveScope(); 2670 # endif 2671 2671 } 2672 2672 else {
Note:
See TracChangeset
for help on using the changeset viewer.