Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
8d8a123c
Commit
8d8a123c
authored
Jul 31, 1999
by
Eric Kohl
Committed by
Alexandre Julliard
Jul 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for DAD_SetDragImage() and PathCleanupSpec().
parent
539b7b41
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
shell32.spec
dlls/shell32/shell32.spec
+2
-2
shellord.c
dlls/shell32/shellord.c
+19
-0
No files found.
dlls/shell32/shell32.spec
View file @
8d8a123c
...
...
@@ -141,7 +141,7 @@ init Shell32LibMain
133 stdcall DragQueryFileW(long long ptr long) DragQueryFileW
134 stub DAD_DragMove
135 stdcall DragQueryPoint(long ptr) DragQueryPoint
136 st
ub
DAD_SetDragImage
136 st
dcall DAD_SetDragImage(long long)
DAD_SetDragImage
137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage
138 stub DuplicateIcon # exported by name
139 stub Desktop_UpdateBriefcaseOnEvent
...
...
@@ -176,7 +176,7 @@ init Shell32LibMain
168 stub SHCreatePropSheetExtArray
169 stub SHDestroyPropSheetExtArray
170 stub SHReplaceFromPropSheetExtArray
171 st
ub
PathCleanupSpec
171 st
dcall PathCleanupSpec(ptr ptr)
PathCleanupSpec
172 stub SHCreateLinks
173 stdcall SHValidateUNC(long long long)SHValidateUNC
174 stdcall SHCreateShellFolderViewEx (ptr ptr) SHCreateShellFolderViewEx
...
...
dlls/shell32/shellord.c
View file @
8d8a123c
...
...
@@ -792,6 +792,16 @@ HRESULT WINAPI SHFreeUnusedLibraries (void)
return
TRUE
;
}
/*************************************************************************
* DAD_SetDragImage [SHELL32.136]
*
* NOTES
* exported by name
*/
HRESULT
WINAPI
DAD_SetDragImage
(
DWORD
u
,
DWORD
v
)
{
FIXME
(
"0x%08lx 0x%08lx stub
\n
"
,
u
,
v
);
return
0
;
}
/*************************************************************************
* DAD_ShowDragImage [SHELL32.137]
*
* NOTES
...
...
@@ -1287,3 +1297,12 @@ HRESULT WINAPI DoEnvironmentSubstAW(LPVOID x, LPVOID y)
return
DoEnvironmentSubstW
(
x
,
y
);
return
DoEnvironmentSubstA
(
x
,
y
);
}
/*************************************************************************
* PathCleanupSpec [SHELL32.171]
*
*/
BOOL
WINAPI
PathCleanupSpec
(
LPSTR
x
,
LPSTR
y
)
{
FIXME
(
"%p(%s) %p(%s) stub
\n
"
,
x
,
debugstr_w
(
x
),
y
,
debugstr_w
(
y
));
return
TRUE
;
}
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