| 41 | namespace debugviewpp { |
| 42 | |
| 43 | std::wstring GetPersonalPath() |
| 44 | { |
| 45 | std::wstring path; |
| 46 | wchar_t szPath[MAX_PATH]; |
| 47 | if (SUCCEEDED(SHGetFolderPath(nullptr, CSIDL_PERSONAL, nullptr, 0, szPath))) |
| 48 | path = szPath; |
| 49 | return path; |
| 50 | } |
| 51 | |
| 52 | void CLogViewTabItem::SetView(const std::shared_ptr<CLogView>& pView) |
| 53 | { |