table of contents
other versions
- wheezy 1.4.1-4
SelectObject(3w) | Wine API | SelectObject(3w) |
NAME¶
SelectObject (GDI32.@)SYNOPSIS¶
HGDIOBJ SelectObject(
HDC hdc,
HGDIOBJ hObj
)
DESCRIPTION¶
Select a Gdi object into a device context.PARAMS¶
hdc [In] Device context to associate the object with. hObj [In] Gdi object to associate with hdc.RETURNS¶
Success: A non-NULL handle representing the previously selected object of the same type as hObj. Failure: A NULL object. If hdc is invalid, GetLastError(3w) returns ERROR_INVALID_HANDLE. if hObj is not a valid object handle, no last error is set. In either case, hdc is unaffected by the call.IMPLEMENTATION¶
Declared in "gdi_private.h". Implemented in "dlls/gdi32/gdiobj.c". Debug channel "gdi".Oct 2012 | Wine API |