examples: win32-videooverlay: Fix C2440 build error

Follow WNDPROC define to avoid implicit type conversion.
This commit is contained in:
Seungha Yang 2019-07-10 01:27:43 +09:00
parent 2e686b0dad
commit 8f125fb4d9

View file

@ -35,7 +35,7 @@ static HWND hwnd = NULL;
#define DEFAULT_VIDEO_SINK "glimagesink"
static LRESULT
static LRESULT CALLBACK
window_proc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) {
@ -139,7 +139,7 @@ main (gint argc, gchar ** argv)
/* prepare window */
wc.cbSize = sizeof (WNDCLASSEX);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = window_proc;
wc.lpfnWndProc = (WNDPROC) window_proc;
wc.hInstance = hinstance;
wc.hCursor = LoadCursor (NULL, IDC_ARROW);
wc.lpszClassName = "GstWIN32VideoOverlay";