Changeset 2341 for trunk/include/winexebase.h
- Timestamp:
- Jan 6, 2000, 9:03:04 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/include/winexebase.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/winexebase.h
r1833 r2341 1 /* $Id: winexebase.h,v 1. 2 1999-11-24 19:33:34 sandervl Exp $ */1 /* $Id: winexebase.h,v 1.3 2000-01-06 20:03:04 sandervl Exp $ */ 2 2 3 3 /* … … 24 24 virtual ~Win32ExeBase(); 25 25 26 void setCommandLine(char *cline) { cmdline = cline; }; 27 char *getCommandLine() { return cmdline; }; 26 void setCommandLine(char *cline); 27 LPSTR getCommandLineA() { return cmdLineA; }; 28 LPWSTR getCommandLineW() { return cmdLineW; }; 28 29 29 30 BOOL isConsoleApp() { return fConsoleApp; }; … … 34 35 35 36 protected: 36 char *cmdline; 37 BOOL fConsoleApp; 37 LPSTR cmdLineA; 38 LPWSTR cmdLineW; 39 BOOL fConsoleApp; 38 40 39 41 private:
Note:
See TracChangeset
for help on using the changeset viewer.
