IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25709


Ignore:
Timestamp:
Oct 1, 2009, 8:28:17 AM (17 years ago)
Author:
bills
Message:

make pstamp.h a public header file defining constants for error codes and such
pstampint.h is the internal header file now

Location:
trunk/pstamp/src
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/pstamp/src/Makefile.am

    r19229 r25709  
    11bin_PROGRAMS = ppstamp pstamprequest pstampdump
     2
     3include_HEADERS = \
     4        pstamp.h
    25
    36noinst_HEADERS = \
    47        ppstamp.h  \
     8        pstampint.h \
    59        pstampErrorCodes.h
    610
  • trunk/pstamp/src/ppstamp.h

    r25197 r25709  
    66#endif
    77
    8 #include "pstamp.h"
     8#include "pstampint.h"
    99#include "ppstampOptions.h"
    1010
  • trunk/pstamp/src/pstamp.h

    r25445 r25709  
    11#ifndef PSTAMP_H
    22#define PSTAMP_H
    3 
    4 #include <stdio.h>
    5 #include <string.h>
    6 #include <strings.h>  // for strcasecmp
    7 #include <unistd.h>   // for unlink
    8 #include "pslib.h"
    9 #include "psmodules.h"
    10 #include "pstampErrorCodes.h"
    11 
    12 typedef enum {
    13     PSTAMP_UNKNOWN = -1,
    14     PSTAMP_RAW,
    15     PSTAMP_CHIP,
    16     PSTAMP_WARP,
    17     PSTAMP_DIFF,
    18     PSTAMP_STACK
    19 } pstampImageType;
    20 
    21 
    22 // command modes for pstampparse
    23 typedef enum {
    24     PSP_MODE_UNKNOWN = 0,
    25     PSP_MODE_QUEUE_JOB,
    26     PSP_MODE_LIST_URI,
    27     PSP_MODE_LIST_JOB
    28 } pspMode;
    293
    304// error codes returned to users in results flie
  • trunk/pstamp/src/pstampGetROI.c

    r18243 r25709  
    33#endif
    44
    5 #include "pstamp.h"
     5#include "pstampint.h"
    66#include "pstampROI.h"
    77#include "ohana.h"
  • trunk/pstamp/src/pstamprequest.c

    r21243 r25709  
    11#include <pslib.h>
    22#include <string.h>
    3 #include "pstamp.h"
     3#include "pstampint.h"
    44#include "pstampROI.h"
    55
Note: See TracChangeset for help on using the changeset viewer.