Michael Stefaniuc : msvfw32: Replace long with LONG.

Alexandre Julliard julliard at winehq.org
Mon May 17 09:39:31 CDT 2010


Module: wine
Branch: master
Commit: bdc85b69f60ab6c62742abf889ccd7e17e5b5c81
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bdc85b69f60ab6c62742abf889ccd7e17e5b5c81

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon May 17 01:09:05 2010 +0200

msvfw32: Replace long with LONG.

---

 dlls/msvfw32/mciwnd.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvfw32/mciwnd.c b/dlls/msvfw32/mciwnd.c
index 96b6420..bf23a63 100644
--- a/dlls/msvfw32/mciwnd.c
+++ b/dlls/msvfw32/mciwnd.c
@@ -48,7 +48,7 @@ typedef struct
     int         alias;
     UINT        dev_type;
     UINT        mode;
-    long        position;
+    LONG        position;
     SIZE        size; /* size of the original frame rect */
     int         zoom;
     LPWSTR      lpName;
@@ -158,7 +158,7 @@ static inline void MCIWND_notify_pos(MCIWndInfo *mwi)
 {
     if (mwi->dwStyle & MCIWNDF_NOTIFYPOS)
     {
-        long new_pos = SendMessageW(mwi->hWnd, MCIWNDM_GETPOSITIONW, 0, 0);
+        LONG new_pos = SendMessageW(mwi->hWnd, MCIWNDM_GETPOSITIONW, 0, 0);
         if (new_pos != mwi->position)
         {
             mwi->position = new_pos;




More information about the wine-cvs mailing list