Changeset 1939 for trunk/tools/database/StateUpd.cpp
- Timestamp:
- Dec 2, 1999, 3:29:14 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/StateUpd.cpp
r1935 r1939 1 /* $Id: StateUpd.cpp,v 1. 2 1999-12-02 12:05:47bird Exp $ */1 /* $Id: StateUpd.cpp,v 1.3 1999-12-02 14:29:14 bird Exp $ */ 2 2 /* 3 3 * StateUpd - Scans source files for API functions and imports data on them. … … 219 219 while (argv[argi] != NULL) 220 220 { 221 ulRc += processDir(argv[argi], TRUE, &options); 221 ulRc += processDir(argv[argi], 222 argv[argi][strlen(argv[argi])] == '\\' || argv[argi][strlen(argv[argi])] == '/', 223 &options); 222 224 argi++; 223 225 } … … 275 277 "StateUpd v%01d.%02d - Odin32 API Database utility\n" 276 278 "----------------------------------------------\n" 277 "syntax: StateUpd.exe [-h|-?] [options] [ file1 [file2 [file3...]]]\n"279 "syntax: StateUpd.exe [-h|-?] [options] [FileOrDir1 [FileOrDir2 [...]]]\n" 278 280 "\n" 279 281 " -h or -? Syntax help. (this)\n" … … 292 294 "and insert it into the database.\n" 293 295 "\n" 294 "If no files are given, then all *.c and *.cpp files will be scanned. \n"296 "If no files are given, then all *.c and *.cpp files will be scanned. (Not correct!)\n" 295 297 "NOTE: When files are given, only *.c and *.cpp files will be scanned.\n" 296 298 "Wildchars are allowed in the file spesifications.\n"
Note:
See TracChangeset
for help on using the changeset viewer.