Index: trunk/psLib/src/collections/psMetadata.c
===================================================================
--- trunk/psLib/src/collections/psMetadata.c	(revision 3165)
+++ trunk/psLib/src/collections/psMetadata.c	(revision 3246)
@@ -12,6 +12,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-01-17 20:58:20 $
+*  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-17 01:58:42 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -419,5 +419,5 @@
 }
 
-void* psMetadataLookupPtr(psMetadata *md, const char *key, psBool *status)
+void* psMetadataLookupPtr(psBool *status, psMetadata *md, const char *key)
 {
     psMetadataItem *metadataItem = NULL;
@@ -450,5 +450,5 @@
 
 #define psMetadataLookupNumTYPE(TYPE) \
-ps##TYPE psMetadataLookup##TYPE(psMetadata *md, const char *key, psBool *status) \
+ps##TYPE psMetadataLookup##TYPE(psBool *status, psMetadata *md, const char *key) \
 { \
     psMetadataItem *metadataItem = NULL; \
Index: trunk/psLib/src/collections/psMetadata.h
===================================================================
--- trunk/psLib/src/collections/psMetadata.h	(revision 3165)
+++ trunk/psLib/src/collections/psMetadata.h	(revision 3246)
@@ -11,6 +11,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-02-03 00:45:06 $
+*  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-17 01:58:42 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -196,6 +196,6 @@
  */
 psMetadataItem* psMetadataLookup(
-    psMetadata * md,           ///< Metadata collection to lookup metadata item.
-    const char * key           ///< Name of metadata key.
+    psMetadata * md,                   ///< Metadata collection to lookup metadata item.
+    const char * key                   ///< Name of metadata key.
 );
 
@@ -209,7 +209,7 @@
  */
 psF64 psMetadataLookupF64(
-    psMetadata *md,            ///< Metadata collection to lookup metadata item.
-    const char *key,           ///< Name of metadata key.
-    psBool *status              ///< Status of lookup.
+    psBool *status,                    ///< Status of lookup.
+    psMetadata *md,                    ///< Metadata collection to lookup metadata item.
+    const char *key                    ///< Name of metadata key.
 );
 
@@ -223,7 +223,7 @@
  */
 psF32 psMetadataLookupF32(
-    psMetadata *md,            ///< Metadata collection to lookup metadata item.
-    const char *key,           ///< Name of metadata key.
-    psBool *status              ///< Status of lookup.
+    psBool *status,                    ///< Status of lookup.
+    psMetadata *md,                    ///< Metadata collection to lookup metadata item.
+    const char *key                    ///< Name of metadata key.
 );
 
@@ -237,7 +237,7 @@
  */
 psS32 psMetadataLookupS32(
-    psMetadata *md,            ///< Metadata collection to lookup metadata item.
-    const char *key,           ///< Name of metadata key.
-    psBool *status              ///< Status of lookup.
+    psBool *status,                    ///< Status of lookup.
+    psMetadata *md,                    ///< Metadata collection to lookup metadata item.
+    const char *key                    ///< Name of metadata key.
 );
 
@@ -251,7 +251,7 @@
  */
 psBool psMetadataLookupBool(
-    psMetadata *md,            ///< Metadata collection to lookup metadata item.
-    const char *key,           ///< Name of metadata key.
-    psBool *status              ///< Status of lookup.
+    psBool *status,                    ///< Status of lookup.
+    psMetadata *md,                    ///< Metadata collection to lookup metadata item.
+    const char *key                    ///< Name of metadata key.
 );
 
@@ -265,7 +265,7 @@
  */
 void* psMetadataLookupPtr(
-    psMetadata* md,            ///< Metadata collection to lookup metadata item.
-    const char *key,           ///< Name of metadata key.
-    psBool *status              ///< Status of lookup.
+    psBool *status,                    ///< Status of lookup.
+    psMetadata* md,                    ///< Metadata collection to lookup metadata item.
+    const char *key                    ///< Name of metadata key.
 );
 
