diff options
author | George Hazan <ghazan@miranda.im> | 2022-08-05 17:47:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-08-05 17:47:29 +0300 |
commit | 1f3b7b5cfc7ca3bf335ed3fc062a0009e0a9dcb8 (patch) | |
tree | 4a82446b0571835ec396b075d345e263fdd2f5a7 /include | |
parent | de19bf751523d8c78701accc110eae5538cffca4 (diff) |
fixes #3143 (autoexec_*.ini не стираются после импорта, хотя для этого достаточно прав)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_utils.h b/include/m_utils.h index a9914f93f7..e7bff67f1a 100644 --- a/include/m_utils.h +++ b/include/m_utils.h @@ -486,7 +486,7 @@ namespace PU MIR_APP_DLL(bool) IsProcessElevated();
// Launches pu_stub.exe with elevated priviledges if needed
- MIR_APP_DLL(bool) PrepareEscalation();
+ MIR_APP_DLL(bool) PrepareEscalation(const wchar_t *pwszFile = nullptr);
MIR_APP_DLL(int) SafeCopyFile(const wchar_t *pSrc, const wchar_t *pDst);
MIR_APP_DLL(int) SafeMoveFile(const wchar_t *pSrc, const wchar_t *pDst);
|