- Timestamp:
- 12/19/99 12:50:41 (9 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
console/src/main.cpp (modified) (1 diff)
-
email/src/main.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/console/src/main.cpp
r588 r632 9 9 CLicqConsole *licqConsole; 10 10 11 voidLP_Usage(void)11 const char *LP_Usage(void) 12 12 { 13 fprintf(stderr, "Licq Plugin: %s %s\n", LP_Name(), LP_Version()); 14 fprintf(stderr, "Usage: Licq [options] -p console\n\n"); 13 static const char usage[] = 14 "Usage: Licq [ options ] -p console\n"; 15 return usage; 15 16 } 16 17 -
trunk/email/src/main.cpp
r591 r632 10 10 CLicqEmail *licqEmail; 11 11 12 voidLP_Usage(void)12 const char *LP_Usage(void) 13 13 { 14 fprintf(stderr, "Licq Plugin: %s %s\n", LP_Name(), LP_Version()); 15 fprintf(stderr, "Usage: Licq [options] -p email -- [ -h ] [ -e ] [ -l <staus> ]\n" 16 " -h : help\n" 17 " -e : start enabled\n" 18 " -l <status> : log on at startup\n\n"); 14 static const char usage[] = 15 "Usage: Licq [options] -p email -- [ -h ] [ -e ] [ -l <staus> ]\n" 16 " -h : help\n" 17 " -e : start enabled\n" 18 " -l <status> : log on at startup\n"; 19 return usage; 19 20 } 20 21
