Developer Documentation
Loading...
Searching...
No Matches
windows-startup.hh
1
2#include "StackWalker/StackWalker.hh"
3
4/* ==========================================================
5 *
6 * Stackwalker code. Used to get a backtrace if OpenFlipper
7 * crashes under windows
8 *
9 * ==========================================================*/
10
11
13{
14protected:
15 virtual void OnOutput(LPCSTR szText) override;
16};
17
18
19/* ==========================================================
20 *
21 * Console for Windows to get additional output written via
22 * cerr, cout, ... that is not forwarded to log window
23 *
24 * ==========================================================*/
25
26void connect_console();
27void attachConsole();