Index: trunk/psLib/src/imageops/psImageStructManip.h
===================================================================
--- trunk/psLib/src/imageops/psImageStructManip.h	(revision 15456)
+++ trunk/psLib/src/imageops/psImageStructManip.h	(revision 15492)
@@ -5,6 +5,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-11-05 23:56:33 $
+*  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-11-08 01:09:49 $
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
@@ -64,4 +64,5 @@
  *
  */
+#ifdef DOXYGEN
 psImage* psImageCopy(
     psImage* output,                   ///< if not NULL, a psImage that could be recycled.
@@ -69,4 +70,16 @@
     psElemType type                    ///< the desired datatype of the returned copy
 );
+#else // ifdef DOXYGEN
+psImage* p_psImageCopy(
+    const char *file,                   ///< File of caller
+    unsigned int lineno,                ///< Line number of caller
+    const char *func,                   ///< Function name of caller
+    psImage* output,                   ///< if not NULL, a psImage that could be recycled.
+    const psImage* input,              ///< the psImage to copy
+    psElemType type                    ///< the desired datatype of the returned copy
+) PS_ATTR_MALLOC;
+#define psImageCopy(output, input, type) \
+      p_psImageSubset(__FILE__, __LINE__, __func__, output, input, type)
+#endif // ifdef DOXYGEN
 
 /** Trim an image
