Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 19, 2009, 3:11:15 PM (16 years ago)
Author:
rgrieder
Message:

ORXONOX_USE_WINMAIN should now work as expected.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/CommandLine.h

    r3300 r3323  
    142142
    143143        //! Parse redirection to internal member method.
    144         static void parseCommandLine(int argc, char** argv) { _getInstance()._parseCommandLine(argc, argv); }
     144        static void parseCommandLine(const std::string& cmdLine) { _getInstance()._parseCommandLine(cmdLine); }
    145145        static void parseFile() { _getInstance()._parseFile(); }
    146146
     
    174174        static CommandLine& _getInstance();
    175175
    176         void _parseCommandLine(int argc, char** argv);
     176        void _parseCommandLine(const std::string& cmdLine);
    177177        void _parseFile();
    178178        void _parse(const std::vector<std::string>& arguments, bool bParsingFile);
Note: See TracChangeset for help on using the changeset viewer.