Ignore:
Timestamp:
Jan 6, 2000, 9:03:04 PM (26 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

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 $ */
    22
    33/*
     
    2424virtual ~Win32ExeBase();
    2525
    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;  };
    2829
    2930        BOOL  isConsoleApp()                   { return fConsoleApp; };
     
    3435       
    3536protected:
    36         char *cmdline;
    37         BOOL  fConsoleApp;
     37        LPSTR  cmdLineA;
     38        LPWSTR cmdLineW;
     39        BOOL   fConsoleApp;
    3840
    3941private:
Note: See TracChangeset for help on using the changeset viewer.