Changeset 2204 for trunk/src/user32/oslibutil.cpp
- Timestamp:
- Dec 26, 1999, 6:30:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibutil.cpp
r949 r2204 1 /* $Id: oslibutil.cpp,v 1. 1 1999-09-15 23:18:54 sandervlExp $ */1 /* $Id: oslibutil.cpp,v 1.2 1999-12-26 17:30:15 cbratschi Exp $ */ 2 2 /* 3 3 * Window API utility functions for OS/2 … … 24 24 if(thdb) 25 25 { 26 26 return (HAB)thdb->hab; 27 27 } 28 28 … … 39 39 if(thdb) 40 40 { 41 41 thdb->hab = (ULONG)hab; 42 42 } 43 else 43 else dprintf(("SetThreadHAB: thdb == NULL!!")); 44 44 } 45 45 //****************************************************************************** … … 52 52 if(thdb) 53 53 { 54 54 return (HMQ)thdb->hmq; 55 55 } 56 56 … … 67 67 if(thdb) 68 68 { 69 thdb->hmq = (ULONG)hmq; 69 thdb->hmq = (ULONG)hmq; 70 70 } 71 else 71 else dprintf(("SetThreadMessageQueue: thdb == NULL!!")); 72 72 } 73 73 //****************************************************************************** 74 74 //****************************************************************************** 75 DWORD GetThreadMessageExtraInfo() 76 { 77 THDB *thdb; 78 79 thdb = GetThreadTHDB(); 80 if(thdb) 81 { 82 return thdb->lParam; 83 } 84 85 dprintf(("GetThreadMessageExtraInfo: thdb == NULL!!")); 86 return 0; 87 } 88 //****************************************************************************** 89 //****************************************************************************** 90 DWORD SetThreadMessageExtraInfo(DWORD lParam) 91 { 92 THDB *thdb; 93 94 thdb = GetThreadTHDB(); 95 if(thdb) 96 { 97 thdb->lParam = lParam; 98 } 99 else dprintf(("SetThreadMessageExtraInfo: thdb == NULL!!")); 100 return 0; 101 }
Note:
See TracChangeset
for help on using the changeset viewer.