Changeset 7620 for trunk/src/user32/oslibutil.cpp
- Timestamp:
- Dec 12, 2001, 5:40:45 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibutil.cpp
r4658 r7620 1 /* $Id: oslibutil.cpp,v 1. 6 2000-11-21 11:36:08sandervl Exp $ */1 /* $Id: oslibutil.cpp,v 1.7 2001-12-12 16:40:44 sandervl Exp $ */ 2 2 /* 3 3 * Window API utility functions for OS/2 … … 76 76 //****************************************************************************** 77 77 //****************************************************************************** 78 DWORD GetThreadMessageExtraInfo()79 {80 TEB *teb;81 82 teb = GetThreadTEB();83 if(teb)84 {85 return teb->o.odin.lParam;86 }87 88 dprintf(("GetThreadMessageExtraInfo: teb == NULL!!"));89 return 0;90 }91 //******************************************************************************92 //******************************************************************************93 DWORD SetThreadMessageExtraInfo(DWORD lParam)94 {95 TEB *teb;96 97 teb = GetThreadTEB();98 if(teb)99 {100 teb->o.odin.lParam = lParam;101 }102 else dprintf(("SetThreadMessageExtraInfo: teb == NULL!!"));103 return 0;104 }
Note:
See TracChangeset
for help on using the changeset viewer.