GetLogColorSpaceA function (wingdi.h)

The GetLogColorSpace function retrieves the color space definition identified by a specified handle.

Syntax

BOOL GetLogColorSpaceA(
  HCOLORSPACE      hColorSpace,
  LPLOGCOLORSPACEA lpBuffer,
  DWORD            nSize
);

Parameters

hColorSpace

Specifies the handle to a color space.

lpBuffer

Points to a buffer to receive the LOGCOLORSPACE structure.

nSize

Specifies the maximum size of the buffer.

Return value

If this function succeeds, the return value is TRUE.

If this function fails, the return value is FALSE.

Remarks

Windows 95/98/Me: GetLogColorSpaceW is supported by the Microsoft Layer for Unicode. To use this, you must add certain files to your application, as outlined in Microsoft Layer for Unicode on Windows 95/98/Me Systems.

Note

The wingdi.h header defines GetLogColorSpace as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header wingdi.h
Library Gdi32.lib
DLL Gdi32.dll

See also