MCPcopy Create free account
hub / github.com/WinMerge/winmerge / GetAppDataPath

Function GetAppDataPath

Src/Environment.cpp:144–150  ·  view source on GitHub ↗

* @brief Return User's Application Data Folder. * This function returns full path to User's Application Data -folder. * @return Full path to Application Data -folder. */

Source from the content-addressed store, hash-verified

142 * @return Full path to Application Data -folder.
143 */
144String GetAppDataPath()
145{
146 tchar_t path[MAX_PATH];
147 path[0] = _T('\0');
148 SHGetFolderPath(nullptr, CSIDL_APPDATA, nullptr, 0, path);
149 return path;
150}
151
152/**
153 * @brief Return unique string for the instance.

Callers 7

GetPluginXMLPathFunction · 0.85
DoFileMethod · 0.85
Plugins.cppFile · 0.85
GetColorSchemesFoldersFunction · 0.85
GetUserPathFunction · 0.85
LoadAllFileFiltersMethod · 0.85
GetAppDataCrashInfoDirFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected