IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 15, 2017, 12:27:40 PM (9 years ago)
Author:
eugene
Message:

change opihi_int from int to long long int

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ohana.20170822/src/libdvo/include/dvodb.h

    r39633 r40168  
    33
    44# define MEASURE_HAS_XCCD 1
     5
     6// Some values used by code moved to libdvo from opihi.
     7enum {OPIHI_NOTYPE, OPIHI_FLT, OPIHI_INT};
     8# define opihi_flt double
     9// # define opihi_int int64_t
     10# define opihi_int long long int
     11# define OPIHI_INT_FMT "%lld"
    512
    613typedef enum {
     
    471478  char    type;
    472479  int     field;
    473   // opihi_flt FltValue;
    474   // opihi_int IntValue;
    475   double FltValue;
    476   int IntValue;
     480  opihi_flt FltValue;
     481  opihi_int IntValue;
     482  // double FltValue;
     483  // int IntValue;
    477484} dbStack;
    478485
    479486typedef struct {
    480   // opihi_flt Flt;
    481   // opihi_int Int;
    482   double Flt;
    483   int Int;
     487  opihi_flt Flt;
     488  opihi_int Int;
     489  // double Flt;
     490  // int Int;
    484491} dbValue;
    485492
     
    562569int dbExtractImagesReset (void);
    563570
    564 // Some values used by code moved to libdvo from opihi.
    565 enum {OPIHI_NOTYPE, OPIHI_FLT, OPIHI_INT};
    566 #define opihi_flt double
    567 #define opihi_int int
    568 
    569571#include "get_graphdata.h"
    570572
Note: See TracChangeset for help on using the changeset viewer.