PRB: IsGDIObject() Enhanced and Renamed to GetObjectType()ID: Q91072
|
In the original version of Win32, there is no IsGdiObject() function in the Win32 API. However, the new function GetObjectType can be used as a replacement for IsGDIObject.
The changes apply to Windows 95 and Windows NT 4.0.
The Windows 3.1 IsGDIObject function has been enhanced and renamed to GetObjectType. In addition to verifying that an object handle refers to a GDI object, GetObjectType also returns a value that describes what kind of object the handle represents.
You can use the following macro to aid in porting your programs that were originally designed for Windows 3.1:
#define IsGDIObject(hobj) ((BOOL)GetObjectType(hobj))
This behavior is by design.
Additional query words: 3.10
Keywords : kbNTOS350 kbNTOS351 kbNTOS400 kbSDKWin32 kbWinOS95 kbDSupport
Version : winnt:3.5,3.51,4.0
Platform : winnt
Issue type : kbprb
Last Reviewed: June 28, 1999