Expand Minimize
This topic has not yet been rated - Rate this topic

GetRValue (Windows Embedded Compact 7)

1/23/2013

This macro retrieves an intensity value for the red component of a 32-bit RGB value.


BYTE GetRValue( 
  DWORD rgb
);
rgb

Specifies an RGB color value.

The return value is the intensity of the red component of the specified RGB color.

The intensity value is in the range 0 through 255.

The GetRValue macro is defined as follows.

#define GetRValue(rgb)   ((BYTE) (rgb)) 

Header

windows.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.