IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 23, 2005, 6:18:28 PM (21 years ago)
Author:
eugene
Message:

working towards autocode FITS table support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/imregister/include/spreg.h

    r2803 r3491  
    11# include <signal.h>
     2
     3/*** fits_db test APIs ***/
     4typedef struct {
     5  FILE  *f;
     6  char  *extname;
     7  int    dbstate;
     8  int    lockstat;
     9  Header header;
     10  Matrix matrix;
     11  Header theader;
     12  FTable ftable;
     13} DB;
     14
     15DB *fits_db_init ();
     16DB *fits_db_lock (DB *db, char *filename);
     17int fits_db_load (DB *db);
     18int fits_db_save (DB *db);
     19int fits_db_free (DB *db);
     20int fits_db_update (DB *db, VTable *vtable);
     21int fits_db_close (DB *db);
     22int fits_db_print_status (DB *db, char *message);
     23int fits_db_escape (DB *db, char *message);
     24
     25/**** move to fitsio.h ***/
    226
    327enum {
Note: See TracChangeset for help on using the changeset viewer.