Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0465030a
Commit
0465030a
authored
Aug 14, 2002
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for DAD_Drag Enter, EnterEx, Move AutoScroll and Leave.
parent
9611986a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
5 deletions
+50
-5
shell32.spec
dlls/shell32/shell32.spec
+5
-5
shellord.c
dlls/shell32/shellord.c
+45
-0
No files found.
dlls/shell32/shell32.spec
View file @
0465030a
...
...
@@ -121,12 +121,12 @@ init Shell32LibMain
126 stdcall SHOutOfMemoryMessageBox (long long long) SHOutOfMemoryMessageBox
127 stdcall SHWinHelp (long long long long) SHWinHelp
128 stdcall DllGetClassObject(long long ptr) SHELL32_DllGetClassObject
129 st
ub
DAD_AutoScroll
130 st
ub
DAD_DragEnter
131 st
ub
DAD_DragEnterEx
132 st
ub
DAD_DragLeave
129 st
dcall DAD_AutoScroll(long ptr ptr)
DAD_AutoScroll
130 st
dcall DAD_DragEnter(long)
DAD_DragEnter
131 st
dcall DAD_DragEnterEx(long long long)
DAD_DragEnterEx
132 st
dcall DAD_DragLeave()
DAD_DragLeave
133 stdcall DragQueryFileW(long long ptr long) DragQueryFileW
134 st
ub
DAD_DragMove
134 st
dcall DAD_DragMove(long long)
DAD_DragMove
135 stdcall DragQueryPoint(long ptr) DragQueryPoint
136 stdcall DAD_SetDragImage(long long) DAD_SetDragImage
137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage
...
...
dlls/shell32/shellord.c
View file @
0465030a
...
...
@@ -972,6 +972,51 @@ void WINAPI SHFreeUnusedLibraries (void)
FIXME
(
"stub
\n
"
);
}
/*************************************************************************
* DAD_AutoScroll [SHELL32.129]
*
*/
DWORD
WINAPI
DAD_AutoScroll
(
HWND
hwnd
,
LPSCROLLSAMPLES
samples
,
LPPOINT
pt
)
{
FIXME
(
"hwnd = %04x %p %p
\n
"
,
hwnd
,
samples
,
pt
);
return
0
;
}
/*************************************************************************
* DAD_DragEnter [SHELL32.130]
*
*/
BOOL
WINAPI
DAD_DragEnter
(
HWND
hwnd
)
{
FIXME
(
"hwnd = %04x
\n
"
,
hwnd
);
return
FALSE
;
}
/*************************************************************************
* DAD_DragEnterEx [SHELL32.131]
*
*/
BOOL
WINAPI
DAD_DragEnterEx
(
HWND
hwnd
,
POINT
p
)
{
FIXME
(
"hwnd = %04x (%ld,%ld)
\n
"
,
hwnd
,
p
.
x
,
p
.
y
);
return
FALSE
;
}
/*************************************************************************
* DAD_DragMove [SHELL32.134]
*
*/
BOOL
WINAPI
DAD_DragMove
(
POINT
p
)
{
FIXME
(
"(%ld,%ld)
\n
"
,
p
.
x
,
p
.
y
);
return
FALSE
;
}
/*************************************************************************
* DAD_Leave [SHELL32.132]
*
*/
BOOL
WINAPI
DAD_DragLeave
(
VOID
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
/*************************************************************************
* DAD_SetDragImage [SHELL32.136]
*
* NOTES
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment