Changeset b8a4cd332953c030daa87e7481da92c98ce19bb7

Show
Ignore:
Timestamp:
04/30/08 19:01:20 (4 months ago)
Author:
Jean-Baptiste Kempf <jb@altair.videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@altair.videolan.org> 1209574880 +0200
git-parent:

[b942bf2b1bf1f9ca9b9ca951937ab947d42b376a]

git-author:
Jean-Baptiste Kempf <jb@altair.videolan.org> 1209574880 +0200
Message:

Win64 compatible modifications around set/getWindowLong

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/win32_specific.c

    r449fd28 rb8a4cd3  
    288288                  NULL );                               /* sent to WM_CREATE */ 
    289289 
    290     SetWindowLong( ipcwindow, GWL_WNDPROC, (LONG)WMCOPYWNDPROC ); 
    291     SetWindowLongPtr( ipcwindow, GWL_USERDATA, (LONG_PTR)p_this ); 
     290    SetWindowLongPtr( ipcwindow, GWLP_WNDPROC, (LRESULT)WMCOPYWNDPROC ); 
     291    SetWindowLongPtr( ipcwindow, GWLP_USERDATA, (LONG_PTR)p_this ); 
    292292 
    293293    /* Signal the creation of the thread and events queue */ 
     
    310310        playlist_t *p_playlist; 
    311311 
    312         p_this = (vlc_object_t *)GetWindowLongPtr( hwnd, GWL_USERDATA ); 
     312        p_this = (vlc_object_t *)GetWindowLongPtr( hwnd, GWLP_USERDATA ); 
    313313 
    314314        if( !p_this ) return 0;