| 65 | } |
| 66 | |
| 67 | std::wstring GetAppPath() |
| 68 | { |
| 69 | wchar_t appPath[MAX_PATH]; |
| 70 | GetModuleFileName(nullptr, appPath, ARRAYSIZE(appPath)); |
| 71 | return ResolvePathAndTrimFile(appPath); |
| 72 | } |
| 73 | |
| 74 | std::wstring GetRuntimePath(AppWindow* appWindow) |
| 75 | { |
no test coverage detected