Skip to content
Snippets Groups Projects
Commit a71e1b49 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

Removed use of WND struct.

parent e9437c73
Branches
Tags
No related merge requests found
......@@ -14,10 +14,10 @@
#include "winerror.h"
#include "file.h"
#include "heap.h"
#include "ldt.h"
#include "module.h"
#include "neexe.h"
#include "dlgs.h"
#include "win.h"
#include "cursoricon.h"
#include "sysmetrics.h"
#include "shellapi.h"
......@@ -67,11 +67,15 @@ static UINT16 uMsgShellActivate = 0;
*/
void WINAPI DragAcceptFiles(HWND hWnd, BOOL b)
{
WND* wnd = WIN_FindWndPtr(hWnd);
LONG exstyle;
if( wnd )
wnd->dwExStyle = b? wnd->dwExStyle | WS_EX_ACCEPTFILES
: wnd->dwExStyle & ~WS_EX_ACCEPTFILES;
if( !IsWindow(hWnd) )
return;
exstyle = GetWindowLongA(hWnd,GWL_EXSTYLE);
if (b)exstyle |= WS_EX_ACCEPTFILES;
else exstyle &= ~WS_EX_ACCEPTFILES;
SetWindowLongA(hWnd,GWL_EXSTYLE,exstyle);
}
/*************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment