General: Convert typedefs into using aliases

This commit is contained in:
Lioncash
2019-08-16 04:11:27 -04:00
committed by Phillip Stephens
parent 78ce16aa9f
commit 88355ada5f
10 changed files with 20 additions and 19 deletions

View File

@@ -20,7 +20,7 @@ extern std::condition_variable g_nwcv;
#if _WIN32_WINNT_WINBLUE && !WINDOWS_STORE
#include <ShellScalingApi.h>
typedef HRESULT(WINAPI* PFN_GetScaleFactorForMonitor)(_In_ HMONITOR, _Out_ DEVICE_SCALE_FACTOR*);
using PFN_GetScaleFactorForMonitor = HRESULT(WINAPI*)(_In_ HMONITOR, _Out_ DEVICE_SCALE_FACTOR*);
extern PFN_GetScaleFactorForMonitor MyGetScaleFactorForMonitor;
#endif