* title.
*/
static void
-_debug_popup(_In_z_ LPCTSTR szFunctionName)
+_debug_popup(_In_z_ LPCSTR szFunctionName)
{
TCHAR szTitle[0x100], szMessage[0x100+MAX_PATH], szProcessPath[MAX_PATH];
/* Compose pop-up title. The dialog title will contain function name to ease the process
* locating. Mind that Visual Studio displays window titles on the process list. */
- _stprintf_s(szTitle, _countof(szTitle), TEXT("%") TEXT(PRIsLPTSTR) TEXT("v%") TEXT(PRIsLPTSTR),
+ _stprintf_s(szTitle, _countof(szTitle), TEXT("%hs v%") TEXT(PRIsLPTSTR),
szFunctionName, TEXT(PACKAGE_VERSION));
/* Get process name. */
/* Compose the pop-up message. */
_stprintf_s(
szMessage, _countof(szMessage),
- TEXT("The %") TEXT(PRIsLPTSTR) TEXT(" process (PID: %u) has started to execute the %")
- TEXT(PRIsLPTSTR) TEXT(" custom action.\r\n")
+ TEXT("The %") TEXT(PRIsLPTSTR) TEXT(" process (PID: %u) has started to execute the %hs")
+ TEXT(" custom action.\r\n")
TEXT("\r\n")
TEXT("If you would like to debug the custom action, attach a debugger to this process and set breakpoints before dismissing this dialog.\r\n")
TEXT("\r\n")
#pragma comment(linker, DLLEXP_EXPORT)
#endif
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
BOOL bIsCoInitialized = SUCCEEDED(CoInitialize(NULL));
#endif
UNREFERENCED_PARAMETER(hInstall); /* This CA is does not interact with MSI session (report errors, access properties, tables, etc.). */
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
/* Find OpenVPN GUI window. */
HWND hWnd = FindWindow(TEXT("OpenVPN-GUI"), NULL);
#pragma comment(linker, DLLEXP_EXPORT)
#endif
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
UINT uiResult;
BOOL bIsCoInitialized = SUCCEEDED(CoInitialize(NULL));
#pragma comment(linker, DLLEXP_EXPORT)
#endif
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
UINT uiResult;
BOOL bIsCoInitialized = SUCCEEDED(CoInitialize(NULL));
#pragma comment(linker, DLLEXP_EXPORT)
#endif
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
UINT uiResult;
BOOL bIsCoInitialized = SUCCEEDED(CoInitialize(NULL));
#pragma comment(linker, DLLEXP_EXPORT)
#endif
- debug_popup(TEXT(__FUNCTION__));
+ debug_popup(__FUNCTION__);
UINT ret = ERROR_SUCCESS;
BOOL bIsCoInitialized = SUCCEEDED(CoInitialize(NULL));