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
Defined in "gdi_private.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/gdi32/gdiobj.c".
- Debug channel "gdi".