How is defined the data type FXPT2DOT30 in the BMP file structure?

Viewed 1380
3 Answers

From gdiplus.h:

typedef long FXPT2DOT30, FAR *LPFXPT2DOT30;

typedef struct tagCIEXYZ
{
        FXPT2DOT30 ciexyzX;
        FXPT2DOT30 ciexyzY;
        FXPT2DOT30 ciexyzZ;
} CIEXYZ;
Related