diff options
author | Marti Maria <info@littlecms.com> | 2010-07-19 14:34:35 +0200 |
---|---|---|
committer | Marti Maria <info@littlecms.com> | 2010-07-19 14:34:35 +0200 |
commit | 366933f15f68e0128360111f654eeecb5e4ad0b5 (patch) | |
tree | 38484c3880cf543f6fc693788a2f0dd22810a215 /include | |
parent | de6ca05b7c24d2f879f8b8af739eb74cda23b542 (diff) | |
download | lcms2-366933f15f68e0128360111f654eeecb5e4ad0b5.tar.gz |
New Delphi wrapper
Diffstat (limited to 'include')
-rw-r--r-- | include/lcms2.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/lcms2.h b/include/lcms2.h index df6d117..4fa901d 100644 --- a/include/lcms2.h +++ b/include/lcms2.h @@ -1317,6 +1317,11 @@ CMSAPI cmsInt32Number CMSEXPORT cmsReadRawTag(cmsHPROFILE hProfile, cmsTagSig CMSAPI cmsBool CMSEXPORT cmsWriteRawTag(cmsHPROFILE hProfile, cmsTagSignature sig, const void* data, cmsUInt32Number Size); // Access header data +#define cmsEmbeddedProfileFalse 0x00000000 +#define cmsEmbeddedProfileTrue 0x00000001 +#define cmsUseAnywhere 0x00000000 +#define cmsUseWithEmbeddedDataOnly 0x00000002 + CMSAPI cmsUInt32Number CMSEXPORT cmsGetHeaderFlags(cmsHPROFILE hProfile); CMSAPI void CMSEXPORT cmsGetHeaderAttributes(cmsHPROFILE hProfile, cmsUInt64Number* Flags); CMSAPI void CMSEXPORT cmsGetHeaderProfileID(cmsHPROFILE hProfile, cmsUInt8Number* ProfileID); @@ -1352,9 +1357,9 @@ CMSAPI void CMSEXPORT cmsSetEncodedICCversion(cmsHPROFILE hProfile, #define LCMS_USED_AS_OUTPUT 1 #define LCMS_USED_AS_PROOF 2 -CMSAPI cmsBool CMSEXPORT cmsIsIntentSupported(cmsHPROFILE hProfile, cmsUInt32Number Intent, int UsedDirection); +CMSAPI cmsBool CMSEXPORT cmsIsIntentSupported(cmsHPROFILE hProfile, cmsUInt32Number Intent, cmsUInt32Number UsedDirection); CMSAPI cmsBool CMSEXPORT cmsIsMatrixShaper(cmsHPROFILE hProfile); -CMSAPI cmsBool CMSEXPORT cmsIsCLUT(cmsHPROFILE hProfile, cmsUInt32Number Intent, int UsedDirection); +CMSAPI cmsBool CMSEXPORT cmsIsCLUT(cmsHPROFILE hProfile, cmsUInt32Number Intent, cmsUInt32Number UsedDirection); // Translate form/to our notation to ICC CMSAPI cmsColorSpaceSignature CMSEXPORT _cmsICCcolorSpace(int OurNotation); |