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

Function pNewShowWindow

Source/DX9VideoProcessor.cpp:250–259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248
249pShowWindow pOrigShowWindow = nullptr;
250static BOOL WINAPI pNewShowWindow(
251 _In_ HWND hWnd,
252 _In_ int nCmdShow)
253{
254 if (g_bInitVP) {
255 DLog(L"Blocking call ShowWindow() function during initialization VP");
256 return FALSE;
257 }
258 return pOrigShowWindow(hWnd, nCmdShow);
259}
260
261template <typename T>
262inline bool HookFunc(T** ppSystemFunction, PVOID pHookFunction)

Callers

nothing calls this directly

Calls 1

DLogFunction · 0.85

Tested by

no test coverage detected