MCPcopy Create free account
hub / github.com/crossuo/crossuo / ExeFilePath

Method ExeFilePath

src/Wisp/WispApplication.cpp:76–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76fs_path CApplication::ExeFilePath(const char *str, ...) const
77{
78 va_list arg;
79 va_start(arg, str);
80
81 char out[FS_MAX_PATH] = { 0 };
82 vsprintf_s(out, str, arg);
83 va_end(arg);
84
85 fs_path res = fs_path_join(m_ExePath, out);
86 return fs_insensitive(res);
87}
88
89fs_path CApplication::UOFilesPath(const astr_t &str, ...) const
90{

Callers 7

InstallMethod · 0.80
LoadStartupConfigMethod · 0.80
LoadPluginsMethod · 0.80
LoadLocalConfigMethod · 0.80
WritePixelsToDiskMethod · 0.80
GetConfigFileFunction · 0.80

Calls 2

fs_path_joinFunction · 0.85
fs_insensitiveFunction · 0.85

Tested by

no test coverage detected