IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 19, 2006, 10:30:49 AM (20 years ago)
Author:
magnier
Message:

added PM_FPA_STATE_INACTIVE, pmFPAfileActivate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/astrom/pmFPAfile.h

    r6872 r6906  
    77*  @author EAM, IfA
    88*
    9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-04-17 18:01:04 $
     9*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-04-19 20:30:49 $
    1111*
    1212*  Copyright 2004-2005 Institute for Astronomy, University of Hawaii
     
    4646
    4747typedef enum {
    48     PM_FPA_STATE_OPEN,
    49     PM_FPA_STATE_CLOSED,
     48    PM_FPA_STATE_OPEN     = 0x01,
     49    PM_FPA_STATE_CLOSED   = 0x02,
     50    PM_FPA_STATE_INACTIVE = 0x04,
    5051} pmFPAfileState;
    5152
     
    111112bool pmFPAfileClose (pmFPAfile *file, const pmFPAview *view);
    112113
     114// set the state of the specified pmFPAfile to active (state == true) or inactive
     115// if name is NULL, set the state for all pmFPAfiles
     116bool pmFPAfileActivate (psMetadata *files, bool state, char *name);
     117
    113118// examine all pmFPAfiles listed in the files and perform the needed I/O operations (open,read,write,close)
    114119bool pmFPAfileIOChecks (psMetadata *files, const pmFPAview *view, pmFPAfilePlace place);
Note: See TracChangeset for help on using the changeset viewer.