Windows2000/private/ntos/w32/ntgdi/icm/adobe/aug98/test/profcrd.h
2020-09-30 17:12:32 +02:00

38 lines
1.0 KiB
C

#ifndef PROFCRD_H
#define PROFCRD_H
#define MAXCHANNELS 4
#define PREVIEWCRDGRID 17
typedef struct tagHOSTCLUT {
USHORT size;
USHORT wdummy;
DWORD colorSpace;
DWORD pcs;
DWORD intent;
float whitePoint[3];
float mediaWP[3];
unsigned char inputChan;
unsigned char outputChan;
unsigned char clutPoints;
unsigned char lutBits;
float e[9];
USHORT inputEnt;
USHORT outputEnt;
MEMPTR inputArray[MAXCHANNELS];
MEMPTR outputArray[MAXCHANNELS];
MEMPTR clut;
} HOSTCLUT;
typedef HOSTCLUT __huge *LPHOSTCLUT;
BOOL EXTERN
GetPS2PreviewColorRenderingDictionary (
CHANDLE cpDev,
CHANDLE cpTarget,
DWORD Intent,
MEMPTR lpMem,
LPDWORD lpcbSize,
BOOL AllowBinary);
#endif