Index: trunk/archive/pslib/include/psImage.h
===================================================================
--- trunk/archive/pslib/include/psImage.h	(revision 253)
+++ trunk/archive/pslib/include/psImage.h	(revision 257)
@@ -5,8 +5,4 @@
  *  \brief Basic image definitions and operations.
  *  \ingroup AstroGroup
- */
-
-/** General image manipulation functions.
- *  These functions operate on individual 2D images
  */
 
@@ -32,13 +28,17 @@
 } psImage;
 
+/** Functions **************************************************************/
+/** \addtogroup AstroGroup Astronomy-Specific Utilities
+ *  \{
+ */
+
 /*** Image structure manipulation ***/
+
 /// Create an image of the specified size and type.
-typedef int PS_IMAGE_DEPTH;		// RHL Added this to make the psImage compile XXX
-
 psImage *
 psImageAlloc (int nx,			///< image width 
 	      int ny,			///< image height 
-	      PS_IMAGE_DEPTH depth	///< image depth 
-    );
+	      psType type)		///< image data type 
+;
 
 /// Create a subimage of the specified area.
@@ -68,6 +68,4 @@
 
 /*** various image pixel extractions ***/
-
-typedef enum { PS_STAT_MODE_MEDIAN } psStatMode;
 
 /// Extract pixels from rectlinear region to a vector.
@@ -271,4 +269,6 @@
 );
 
+/* \} */ // End of AstroGroup Functions
+
 # endif
 /* image overlay operations 
