diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llappviewerwin32.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/linden/indra/newview/llappviewerwin32.h b/linden/indra/newview/llappviewerwin32.h index b015cc9..fe16ec4 100644 --- a/linden/indra/newview/llappviewerwin32.h +++ b/linden/indra/newview/llappviewerwin32.h | |||
@@ -39,7 +39,7 @@ | |||
39 | class LLAppViewerWin32 : public LLAppViewer | 39 | class LLAppViewerWin32 : public LLAppViewer |
40 | { | 40 | { |
41 | public: | 41 | public: |
42 | LLAppViewerWin32(); | 42 | LLAppViewerWin32(const char* cmd_line); |
43 | virtual ~LLAppViewerWin32(); | 43 | virtual ~LLAppViewerWin32(); |
44 | 44 | ||
45 | // | 45 | // |
@@ -49,15 +49,19 @@ public: | |||
49 | virtual bool cleanup(); | 49 | virtual bool cleanup(); |
50 | 50 | ||
51 | protected: | 51 | protected: |
52 | virtual bool initWindow(); // Initialize the viewer's window. | 52 | virtual void initConsole(); // Initialize OS level debugging console. |
53 | virtual bool initHardwareTest(); // Win32 uses DX9 to test hardware. | 53 | virtual bool initHardwareTest(); // Win32 uses DX9 to test hardware. |
54 | virtual bool initParseCommandLine(LLCommandLineParser& clp); | ||
55 | |||
54 | virtual void handleCrashReporting(); | 56 | virtual void handleCrashReporting(); |
57 | virtual void handleSyncCrashTrace(); | ||
55 | 58 | ||
56 | std::string generateSerialNumber(); | 59 | std::string generateSerialNumber(); |
57 | 60 | ||
58 | private: | 61 | private: |
59 | void disableWinErrorReporting(); | 62 | void disableWinErrorReporting(); |
60 | 63 | ||
64 | std::string mCmdLine; | ||
61 | }; | 65 | }; |
62 | 66 | ||
63 | #endif // LL_LLAPPVIEWERWIN32_H | 67 | #endif // LL_LLAPPVIEWERWIN32_H |