Changeset 16662 for trunk/ippTools/src/flatcorr.c
- Timestamp:
- Feb 26, 2008, 1:29:52 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/flatcorr.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/flatcorr.c
r16661 r16662 38 38 static bool flatcorrimfileMode(pxConfig *config); 39 39 static bool doneMode(pxConfig *config); 40 static bool updaterunMode(pxConfig *config); 40 41 41 42 static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state); … … 64 65 MODECASE(FLATCORR_MODE_FLATCORRIMFILE, flatcorrimfileMode); 65 66 MODECASE(FLATCORR_MODE_DONE, doneMode); 67 MODECASE(FLATCORR_MODE_UPDATERUN, updaterunMode); 66 68 default: 67 69 psAbort("invalid option (this should not happen)"); … … 517 519 static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state) 518 520 { 521 PS_ASSERT_PTR_NON_NULL(config, false); 519 522 PS_ASSERT_PTR_NON_NULL(state, false); 520 523 … … 539 542 return true; 540 543 } 544 545 546 static 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.
