IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 16, 2012, 4:16:14 PM (14 years ago)
Author:
eugene
Message:

move max path length to dvo.h and rename DVO_MAX_PATH; HostTable.index should not be unsigned (we use -1 as an unassigned value, and 215 is sufficient); add functions to save a backup of the database table, and remove the backup if desired; add \n to some error messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120405/Ohana/src/libdvo/include/dvo.h

    r33649 r33869  
    6969  NAN_U_INT   = (signed int) 0xffffffff,
    7070} DVO_INT_NAN;
     71
     72// max path length
     73# define DVO_MAX_PATH 1024
    7174
    7275/* RegImage.flag values */
     
    268271  int Nhosts;
    269272  HostInfo *hosts;
    270   unsigned short *index;
     273  short *index;
    271274} HostTable;
    272275
     
    516519void dvo_catalog_test (Catalog *catalog, int halt);
    517520
     521int dvo_catalog_backup (Catalog *catalog, int primary);
     522int dvo_catalog_unlink_backup (Catalog *catalog, int primary);
     523
    518524/* catmode-specific APIs */
    519525int dvo_catalog_load_raw (Catalog *catalog, int VERBOSE);
Note: See TracChangeset for help on using the changeset viewer.