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

Function pNewSetWindowLongA

Source/DX9VideoProcessor.cpp:207–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205
206pSetWindowLongA pOrigSetWindowLongA = nullptr;
207static LONG WINAPI pNewSetWindowLongA(
208 _In_ HWND hWnd,
209 _In_ int nIndex,
210 _In_ LONG dwNewLong)
211{
212 if (g_bInitVP) {
213 DLog(L"Blocking call SetWindowLongA() function during initialization VP");
214 return 0L;
215 }
216 return pOrigSetWindowLongA(hWnd, nIndex, dwNewLong);
217}
218
219typedef BOOL(WINAPI* pSetWindowPos)(
220 _In_ HWND hWnd,

Callers

nothing calls this directly

Calls 1

DLogFunction · 0.85

Tested by

no test coverage detected