MCPcopy Create free account
hub / github.com/Aleksoid1978/VideoRenderer / pNewSystemParametersInfoA

Function pNewSystemParametersInfoA

Source/DX9VideoProcessor.cpp:188–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186
187pSystemParametersInfoA pOrigSystemParametersInfoA = nullptr;
188static BOOL WINAPI pNewSystemParametersInfoA(
189 _In_ UINT uiAction,
190 _In_ UINT uiParam,
191 _Pre_maybenull_ _Post_valid_ PVOID pvParam,
192 _In_ UINT fWinIni)
193{
194 if (g_bInitVP) {
195 DLog(L"Blocking call SystemParametersInfoA({:#06x},..) function during initialization VP", uiAction);
196 return FALSE;
197 }
198 return pOrigSystemParametersInfoA(uiAction, uiParam, pvParam, fWinIni);
199}
200
201typedef LONG(WINAPI* pSetWindowLongA)(
202 _In_ HWND hWnd,

Callers

nothing calls this directly

Calls 1

DLogFunction · 0.85

Tested by

no test coverage detected