Skip to content

Commit

Permalink
Fix EnumWindowsCallback prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
GH-Rake committed Feb 12, 2020
1 parent 763dafe commit 265565d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GH_D3D11_Hook/DllMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ HWND FindMainWindow( DWORD dwPID )
return handleData.hWnd;
}

BOOL EnumWindowsCallback( HWND hWnd, LPARAM lParam )
BOOL CALLBACK EnumWindowsCallback(HWND hWnd, LPARAM lParam)
{
HandleData& data = *(HandleData*)lParam;
DWORD pid = 0;
Expand Down

0 comments on commit 265565d

Please sign in to comment.