]> granicus.if.org Git - imagemagick/blobdiff - magick/matrix.h
(no commit message)
[imagemagick] / magick / matrix.h
index 88e226d1d25828cded566538c614906f34a01a35..1ec1df7500b540be4121c26d2b3675e7fac7c780 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization
+  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
   dedicated to making software imaging solutions freely available.
   
   You may not use this file except in compliance with the License.
@@ -23,16 +23,15 @@ extern "C" {
 #endif
 
 extern MagickExport double
-  **AcquireMagickMatrix(const unsigned long,const unsigned long),
-  **RelinquishMagickMatrix(double **,const unsigned long);
+  **AcquireMagickMatrix(const size_t,const size_t),
+  **RelinquishMagickMatrix(double **,const size_t);
 
 extern MagickExport MagickBooleanType
-  GaussJordanElimination(double **,double **,const unsigned long,
-       const unsigned long);
+  GaussJordanElimination(double **,double **,const size_t,const size_t);
 
 extern MagickExport void
   LeastSquaresAddTerms(double **,double **,const double *,const double *,
-       const unsigned long, const unsigned long);
+    const size_t, const size_t);
 
 #if defined(__cplusplus) || defined(c_plusplus)
 }