aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewerwin32.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-12-01 17:39:58 -0600
committerJacek Antonelli2008-12-01 17:40:06 -0600
commit7abecb48babe6a6f09bf6692ba55076546cfced9 (patch)
tree8d18a88513fb97adf32c10aae78f4be1984942db /linden/indra/newview/llappviewerwin32.h
parentSecond Life viewer sources 1.21.6 (diff)
downloadmeta-impy-7abecb48babe6a6f09bf6692ba55076546cfced9.zip
meta-impy-7abecb48babe6a6f09bf6692ba55076546cfced9.tar.gz
meta-impy-7abecb48babe6a6f09bf6692ba55076546cfced9.tar.bz2
meta-impy-7abecb48babe6a6f09bf6692ba55076546cfced9.tar.xz
Second Life viewer sources 1.22.0-RC
Diffstat (limited to 'linden/indra/newview/llappviewerwin32.h')
-rw-r--r--linden/indra/newview/llappviewerwin32.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/linden/indra/newview/llappviewerwin32.h b/linden/indra/newview/llappviewerwin32.h
index fe16ec4..6a5b0b1 100644
--- a/linden/indra/newview/llappviewerwin32.h
+++ b/linden/indra/newview/llappviewerwin32.h
@@ -49,15 +49,21 @@ public:
49 virtual bool cleanup(); 49 virtual bool cleanup();
50 50
51protected: 51protected:
52 virtual bool initLogging(); // Override to clean stack_trace info.
52 virtual void initConsole(); // Initialize OS level debugging console. 53 virtual void initConsole(); // Initialize OS level debugging console.
53 virtual bool initHardwareTest(); // Win32 uses DX9 to test hardware. 54 virtual bool initHardwareTest(); // Win32 uses DX9 to test hardware.
54 virtual bool initParseCommandLine(LLCommandLineParser& clp); 55 virtual bool initParseCommandLine(LLCommandLineParser& clp);
55 56
56 virtual void handleCrashReporting(); 57 virtual bool restoreErrorTrap();
58 virtual void handleCrashReporting(bool reportFreeze);
57 virtual void handleSyncCrashTrace(); 59 virtual void handleSyncCrashTrace();
58 60
61 virtual bool sendURLToOtherInstance(const std::string& url);
62
59 std::string generateSerialNumber(); 63 std::string generateSerialNumber();
60 64
65 static const std::string sWindowClass;
66
61private: 67private:
62 void disableWinErrorReporting(); 68 void disableWinErrorReporting();
63 69