table of contents
other versions
- wheezy 1.4.1-4
| GetCurrentObject(3w) | Wine API | GetCurrentObject(3w) |
NAME¶
GetCurrentObject (GDI32.@)SYNOPSIS¶
HGDIOBJ GetCurrentObject(
HDC hdc,
UINT type
)
DESCRIPTION¶
Get the currently selected object of a given type in a device context.PARAMS¶
hdc [In] Device context to get the current object from. type [In] Type of current object to get (OBJ_* defines from "wingdi.h").RETURNS¶
Success: The current object of the given type selected in hdc. Failure: A NULL handle.NOTES¶
- only the following object types are supported:OBJ_PEN
OBJ_BRUSH
OBJ_PAL
OBJ_FONT
OBJ_BITMAP
IMPLEMENTATION¶
Declared in "wingdi.h". Implemented in "dlls/gdi32/gdiobj.c". Debug channel "gdi".| Oct 2012 | Wine API |