Files
MINGW-packages/mingw-w64-libmpeg2-git/0002-libmpeg2-fix-deprecated.patch
Holger Nahrstaedt 1f5bde4faf Libmpeg2 git (#2772)
* libmpeg2-git: move to git

* fix path
2017-08-12 23:55:22 +03:00

21 lines
824 B
Diff

--- libmpeg2/libvo/video_out_dx.c 2014-07-11 00:22:33.440400000 +0400
+++ libmpeg2/libvo/video_out_dx.c.new 2014-07-11 00:22:27.824400000 +0400
@@ -92,7 +92,7 @@
switch (message) {
case WM_WINDOWPOSCHANGED:
- instance = (dx_instance_t *) GetWindowLong (hwnd, GWL_USERDATA);
+ instance = (dx_instance_t *) GetWindowLongPtr (hwnd, GWLP_USERDATA);
/* update the window position and size */
point_window.x = 0;
@@ -173,7 +173,7 @@
/* store a directx_instance pointer into the window local storage
* (for later use in event_handler).
* We need to use SetWindowLongPtr when it is available in mingw */
- SetWindowLong (instance->window, GWL_USERDATA, (LONG) instance);
+ SetWindowLongPtr (instance->window, GWLP_USERDATA, (LONG) instance);
ShowWindow (instance->window, SW_SHOW);