Changeset 4658 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 21, 2000, 12:36:09 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r4628 r4658 1 /* $Id: win32wbase.cpp,v 1.22 3 2000-11-19 11:52:40sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.224 2000-11-21 11:36:09 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 496 496 497 497 //Store our window object pointer in thread local memory, so PMWINDOW.CPP can retrieve it 498 T HDB *thdb = GetThreadTHDB();499 500 if(t hdb == NULL) {501 dprintf(("Window creation failed - t hdb == NULL")); //this is VERY bad498 TEB *teb = GetThreadTEB(); 499 500 if(teb == NULL) { 501 dprintf(("Window creation failed - teb == NULL")); //this is VERY bad 502 502 ExitProcess(666); 503 503 return FALSE; 504 504 } 505 505 506 t hdb->newWindow = (ULONG)this;506 teb->o.odin.newWindow = (ULONG)this; 507 507 508 508 DWORD dwOSWinStyle;
Note:
See TracChangeset
for help on using the changeset viewer.