Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2012-08-08 17:15:54 +0400
committerMarti Maria <info@littlecms.com>2012-08-08 17:15:54 +0400
commiteb6754966c05f3424a050d3ae0ddd312af69a9f2 (patch)
tree6991d7edf0a54ef4e5832954607396ba5a14bd16
parent493aac084b7df46e24ec86ffb6395e5d11cddfba (diff)
Fixed a typo on typename. Added 2.4 doclcms2.4rc1
-rwxr-xr-xdoc/LittleCMS2.3 API.pdfbin1129599 -> 0 bytes
-rwxr-xr-xdoc/LittleCMS2.3 Plugin API.pdfbin492002 -> 0 bytes
-rwxr-xr-xdoc/LittleCMS2.3 tutorial.pdfbin736326 -> 0 bytes
-rwxr-xr-xdoc/LittleCMS2.4 API.pdfbin0 -> 969175 bytes
-rwxr-xr-xdoc/LittleCMS2.4 Plugin API.pdfbin0 -> 500042 bytes
-rwxr-xr-xdoc/LittleCMS2.4 tutorial.pdfbin0 -> 839374 bytes
-rw-r--r--include/lcms2_plugin.h6
-rw-r--r--src/cmsxform.c2
8 files changed, 4 insertions, 4 deletions
diff --git a/doc/LittleCMS2.3 API.pdf b/doc/LittleCMS2.3 API.pdf
deleted file mode 100755
index ec17957..0000000
--- a/doc/LittleCMS2.3 API.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/LittleCMS2.3 Plugin API.pdf b/doc/LittleCMS2.3 Plugin API.pdf
deleted file mode 100755
index 02fecdc..0000000
--- a/doc/LittleCMS2.3 Plugin API.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/LittleCMS2.3 tutorial.pdf b/doc/LittleCMS2.3 tutorial.pdf
deleted file mode 100755
index 4ad11b5..0000000
--- a/doc/LittleCMS2.3 tutorial.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/LittleCMS2.4 API.pdf b/doc/LittleCMS2.4 API.pdf
new file mode 100755
index 0000000..232ad75
--- /dev/null
+++ b/doc/LittleCMS2.4 API.pdf
Binary files differ
diff --git a/doc/LittleCMS2.4 Plugin API.pdf b/doc/LittleCMS2.4 Plugin API.pdf
new file mode 100755
index 0000000..dc73d93
--- /dev/null
+++ b/doc/LittleCMS2.4 Plugin API.pdf
Binary files differ
diff --git a/doc/LittleCMS2.4 tutorial.pdf b/doc/LittleCMS2.4 tutorial.pdf
new file mode 100755
index 0000000..ee6830a
--- /dev/null
+++ b/doc/LittleCMS2.4 tutorial.pdf
Binary files differ
diff --git a/include/lcms2_plugin.h b/include/lcms2_plugin.h
index 5853ede..51edc86 100644
--- a/include/lcms2_plugin.h
+++ b/include/lcms2_plugin.h
@@ -567,9 +567,9 @@ typedef void (* _cmsTransformFn)(struct _cmstransform_struct *CMMcargo,
cmsUInt32Number Size,
cmsUInt32Number Stride);
-typedef cmsBool (* _cmsTranformFactory)(_cmsTransformFn* xform,
+typedef cmsBool (* _cmsTransformFactory)(_cmsTransformFn* xform,
void** UserData,
- _cmsFreeUserDataFn* FreeUserData,
+ _cmsFreeUserDataFn* FreePrivateDataFn,
cmsPipeline** Lut,
cmsUInt32Number* InputFormat,
cmsUInt32Number* OutputFormat,
@@ -583,7 +583,7 @@ typedef struct {
cmsPluginBase base;
// Transform entry point
- _cmsTranformFactory Factory;
+ _cmsTransformFactory Factory;
} cmsPluginTransform;
diff --git a/src/cmsxform.c b/src/cmsxform.c
index 9f677ce..c9bca48 100644
--- a/src/cmsxform.c
+++ b/src/cmsxform.c
@@ -358,7 +358,7 @@ void CachedXFORMGamutCheck(_cmsTRANSFORM* p,
// List of used-defined transform factories
typedef struct _cmsTransformCollection_st {
- _cmsTranformFactory Factory;
+ _cmsTransformFactory Factory;
struct _cmsTransformCollection_st *Next;
} _cmsTransformCollection;