Commit ba0677ca authored by Erwan Tulou's avatar Erwan Tulou

skins2(Win32): kill compil warnings

parent 79c88844
...@@ -72,6 +72,7 @@ STDMETHODIMP_(ULONG) Win32DragDrop::Release() ...@@ -72,6 +72,7 @@ STDMETHODIMP_(ULONG) Win32DragDrop::Release()
STDMETHODIMP Win32DragDrop::DragEnter( LPDATAOBJECT pDataObj, STDMETHODIMP Win32DragDrop::DragEnter( LPDATAOBJECT pDataObj,
DWORD grfKeyState, POINTL pt, DWORD *pdwEffect ) DWORD grfKeyState, POINTL pt, DWORD *pdwEffect )
{ {
(void)grfKeyState; (void)pt;
FORMATETC fmtetc; FORMATETC fmtetc;
fmtetc.cfFormat = CF_HDROP; fmtetc.cfFormat = CF_HDROP;
...@@ -102,6 +103,7 @@ STDMETHODIMP Win32DragDrop::DragEnter( LPDATAOBJECT pDataObj, ...@@ -102,6 +103,7 @@ STDMETHODIMP Win32DragDrop::DragEnter( LPDATAOBJECT pDataObj,
STDMETHODIMP Win32DragDrop::DragOver( DWORD grfKeyState, POINTL pt, STDMETHODIMP Win32DragDrop::DragOver( DWORD grfKeyState, POINTL pt,
DWORD *pdwEffect ) DWORD *pdwEffect )
{ {
(void)grfKeyState; (void)pdwEffect;
// transmit DragOver event // transmit DragOver event
EvtDragOver evt( getIntf(), pt.x, pt.y ); EvtDragOver evt( getIntf(), pt.x, pt.y );
m_pWin->processEvent( evt ); m_pWin->processEvent( evt );
...@@ -124,6 +126,7 @@ STDMETHODIMP Win32DragDrop::DragLeave() ...@@ -124,6 +126,7 @@ STDMETHODIMP Win32DragDrop::DragLeave()
STDMETHODIMP Win32DragDrop::Drop( LPDATAOBJECT pDataObj, DWORD grfKeyState, STDMETHODIMP Win32DragDrop::Drop( LPDATAOBJECT pDataObj, DWORD grfKeyState,
POINTL pt, DWORD *pdwEffect ) POINTL pt, DWORD *pdwEffect )
{ {
(void)grfKeyState;
// User has dropped on us -- get the CF_HDROP data from drag source // User has dropped on us -- get the CF_HDROP data from drag source
FORMATETC fmtetc; FORMATETC fmtetc;
fmtetc.cfFormat = CF_HDROP; fmtetc.cfFormat = CF_HDROP;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment