IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 26, 2008, 1:29:52 PM (18 years ago)
Author:
jhoblitt
Message:

stub out -updaterun

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/flatcorr.c

    r16661 r16662  
    3838static bool flatcorrimfileMode(pxConfig *config);
    3939static bool doneMode(pxConfig *config);
     40static bool updaterunMode(pxConfig *config);
    4041
    4142static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state);
     
    6465        MODECASE(FLATCORR_MODE_FLATCORRIMFILE, flatcorrimfileMode);
    6566        MODECASE(FLATCORR_MODE_DONE,        doneMode);
     67        MODECASE(FLATCORR_MODE_UPDATERUN,   updaterunMode);
    6668        default:
    6769            psAbort("invalid option (this should not happen)");
     
    517519static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state)
    518520{
     521    PS_ASSERT_PTR_NON_NULL(config, false);
    519522    PS_ASSERT_PTR_NON_NULL(state, false);
    520523
     
    539542    return true;
    540543}
     544
     545
     546static bool updaterunMode(pxConfig *config)
     547{
     548    PS_ASSERT_PTR_NON_NULL(config, false);
     549
     550    return true;
     551}
Note: See TracChangeset for help on using the changeset viewer.