MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / Util_GetFullPathName

Method Util_GetFullPathName

source/script_autoit.cpp:1779–1785  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1777
1778
1779void Line::Util_GetFullPathName(LPCTSTR szIn, LPTSTR szOut)
1780// Returns the full pathname and strips any trailing \s. Assumes output is _MAX_PATH in size.
1781{
1782 LPTSTR szFilePart;
1783 GetFullPathName(szIn, _MAX_PATH, szOut, &szFilePart);
1784 strip_trailing_backslash(szOut);
1785}
1786
1787
1788

Callers

nothing calls this directly

Calls 1

strip_trailing_backslashFunction · 0.85

Tested by

no test coverage detected