Scroll to navigation

OleTranslateColor(3w) Wine API OleTranslateColor(3w)

NAME

OleTranslateColor (OLEAUT32.421)

SYNOPSIS

HRESULT OleTranslateColor
(
OLE_COLOR clr,
HPALETTE hpal,
COLORREF* pColorRef
)
 

DESCRIPTION

Convert an OLE_COLOR to a COLORREF.
 

PARAMS

clr [In] Color to convert.
hpal [In] Handle to a palette for the conversion.
pColorRef [Out] Destination for converted color, or NULL to test if the conversion is ok.
 

RETURNS

Success: S_OK. The conversion is ok, and pColorRef contains the converted color if non-NULL.
Failure: E_INVALIDARG, if any argument is invalid.
 

FIXME

Document the conversion rules.
 

IMPLEMENTATION

Declared in "olectl.h".
Implemented in "dlls/oleaut32/oleaut.c".
Debug channel "ole".
Oct 2012 Wine API