Index: trunk/psLib/src/fits/psFitsTableNew.h
===================================================================
--- trunk/psLib/src/fits/psFitsTableNew.h	(revision 32263)
+++ trunk/psLib/src/fits/psFitsTableNew.h	(revision 41896)
@@ -55,6 +55,6 @@
 // Get value for given row and column name
 psBool psFitsTableGetBool(bool *status, psFitsTable *table, int row, const char* name);
-psS8 psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name);
-psU8 psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name);
+psS8  psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name);
+psU8  psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name);
 psS16 psFitsTableGetS16(bool *status, psFitsTable *table, int row, const char* name);
 psU16 psFitsTableGetU16(bool *status, psFitsTable *table, int row, const char* name);
@@ -63,7 +63,21 @@
 psS64 psFitsTableGetS64(bool *status, psFitsTable *table, int row, const char* name);
 psU64 psFitsTableGetU64(bool *status, psFitsTable *table, int row, const char* name);
-
 psF32 psFitsTableGetF32(bool *status, psFitsTable *table, int row, const char* name);
 psF64 psFitsTableGetF64(bool *status, psFitsTable *table, int row, const char* name);
 
+psFitsTable *psFitsTableCreate (psArray *tableColumns, int numRows);
+bool psFitsTableColumnAdd (psArray *tableColumns, char *name, psDataType type);
+psFitsTableColumn *psFitsTableColumnAlloc (char *name, psDataType type);
+
+bool psFitsTableSetS8 (psFitsTable *table, int row, const char* name, psS8  value);
+bool psFitsTableSetU8 (psFitsTable *table, int row, const char* name, psU8  value);
+bool psFitsTableSetS16(psFitsTable *table, int row, const char* name, psS16 value);
+bool psFitsTableSetU16(psFitsTable *table, int row, const char* name, psU16 value);
+bool psFitsTableSetS32(psFitsTable *table, int row, const char* name, psS32 value);
+bool psFitsTableSetU32(psFitsTable *table, int row, const char* name, psU32 value);
+bool psFitsTableSetS64(psFitsTable *table, int row, const char* name, psS64 value);
+bool psFitsTableSetU64(psFitsTable *table, int row, const char* name, psU64 value);
+bool psFitsTableSetF32(psFitsTable *table, int row, const char* name, psF32 value);
+bool psFitsTableSetF64(psFitsTable *table, int row, const char* name, psF64 value);
+
 #endif
