IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 12, 2006, 11:09:44 AM (20 years ago)
Author:
jhoblitt
Message:

sync rel12 branch with head to get the reverted pmConfigAlloc() & pmConfigRead() APIs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel12/psModules/src/config/pmConfig.h

    r7709 r7876  
    33 *  @author PAP, IfA
    44 *
    5  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2006-06-28 00:49:13 $
     5 *  @version $Revision: 1.11.2.1 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2006-07-12 21:09:44 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1616// What recipe sources have been read so far?
    1717typedef enum {
    18     P_PM_RECIPE_SOURCE_NONE   = 0x00,   // None yet
    19     P_PM_RECIPE_SOURCE_SITE   = 0x01,   // Site configuration
    20     P_PM_RECIPE_SOURCE_CAMERA = 0x02,   // Camera configuration
    21     P_PM_RECIPE_SOURCE_CL     = 0x04,   // Command-line
    22     P_PM_RECIPE_SOURCE_ALL    = 0x07    // All sources
     18    P_PM_RECIPE_SOURCE_NONE        = 0x00, // None yet
     19    P_PM_RECIPE_SOURCE_SITE        = 0x01, // Site configuration
     20    P_PM_RECIPE_SOURCE_CAMERA      = 0x02, // Camera configuration
     21    P_PM_RECIPE_SOURCE_CL          = 0x04, // Command-line
     22    P_PM_RECIPE_SOURCE_SYMBOLIC    = 0x14, // Symbolic link, specified on command-line
     23    P_PM_RECIPE_SOURCE_ALL         = 0xff  // All sources
    2324} p_pmRecipeSource;
    2425
     
    3233    psMetadata *files;                  // pmFPAfiles used for analysis
    3334    psDB *database;                     // Database handle
    34     int argc;                           // Number of command-line arguments
     35    int *argc;                          // Number of command-line arguments
    3536    char **argv;                        // Command-line arguments (raw version)
    3637    // Private members
     
    4041pmConfig;
    4142
    42 pmConfig *pmConfigAlloc(int argc,       // Number of command-line arguments
     43pmConfig *pmConfigAlloc(int *argc,      // Number of command-line arguments
    4344                        char **argv     // Command-line arguments
    4445                       );
     
    6667 */
    6768pmConfig *pmConfigRead(
    68     int argc,
     69    int *argc,
    6970    char **argv);
    7071
Note: See TracChangeset for help on using the changeset viewer.