Changeset 6210 for trunk/ippTools/src/chiptool.c
- Timestamp:
- Jan 26, 2006, 1:26:28 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/chiptool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/chiptool.c
r6170 r6210 1 1 #include <stdlib.h> 2 2 3 #include "p 2tools.h"4 5 static bool quickMode(p 2Config *config);6 static bool defineMode(p 2Config *config);7 static bool pendingMode(p 2Config *config);8 static bool doneMode(p 2Config *config);3 #include "pxtools.h" 4 5 static bool quickMode(pxConfig *config); 6 static bool defineMode(pxConfig *config); 7 static bool pendingMode(pxConfig *config); 8 static bool doneMode(pxConfig *config); 9 9 10 10 int main(int argc, char **argv) { 11 p 2Config config;11 pxConfig config; 12 12 13 13 p2searchConfig(&config, argc, argv); … … 49 49 } 50 50 51 static bool quickMode(p 2Config *config)51 static bool quickMode(pxConfig *config) 52 52 { 53 53 psArray *rawFrames = p2searchRawFrames(config); … … 70 70 } 71 71 72 static bool defineMode(p 2Config *config)72 static bool defineMode(pxConfig *config) 73 73 { 74 74 psArray *rawFrames = p2searchRawFrames(config); … … 136 136 } 137 137 138 static bool pendingMode(p 2Config *config)138 static bool pendingMode(pxConfig *config) 139 139 { 140 140 psArray *pendingFrames = p2searchPendingFrames(config); … … 152 152 } 153 153 154 static bool doneMode(p 2Config *config)154 static bool doneMode(pxConfig *config) 155 155 { 156 156 // get exp_id/class/class_id/url from the CLI // add the completed imfile to
Note:
See TracChangeset
for help on using the changeset viewer.
