Changeset 1335 for trunk/dll/mainwnd2.c
- Timestamp:
- Dec 13, 2008, 12:49:02 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/dll/mainwnd2.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/mainwnd2.c
r1224 r1335 26 26 27 Aug 08 JBS Ticket 259: Support saving/restoring toolbars with states 27 27 01 Sep 08 GKY Add bmps for default toolbars 28 10 Dec 08 SHL Integrate exception handler support 28 29 29 30 ***********************************************************************/ … … 32 33 #include <string.h> 33 34 #include <share.h> 34 #include <process.h> // _beginthread35 // #include <process.h> // _beginthread 35 36 36 37 #define INCL_DOS … … 60 61 // SetSysMenu 61 62 #include "mainwnd.h" // CloseChildren, MainWMCommand, MakeMainObjWin, ResizeDrives 62 // TopWindow63 // TopWindow 63 64 #include "common.h" // CommonCreateMainChildren, CommonMainWndProc 64 65 #include "notify.h" // HideNote … … 75 76 #include "wrappers.h" // xfree 76 77 #include "fortify.h" 78 #include "excputil.h" // xbeginthread 77 79 78 80 typedef struct … … 771 773 WinSetWindowUShort(hwnd, QWL_USER + 12, 0); 772 774 WinSetWindowUShort(hwnd, QWL_USER + 16, 0); 773 if (_beginthread(MakeMainObjWin, NULL, 245760, MPVOID) == -1) { 774 Runtime_Error(pszSrcFile, __LINE__, 775 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 775 if (xbeginthread(MakeMainObjWin, 776 245760, 777 MPVOID, 778 pszSrcFile, 779 __LINE__) == -1) 780 { 776 781 PostMsg(hwnd, WM_CLOSE, MPVOID, MPVOID); 777 782 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.
