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
f86ff01d
Commit
f86ff01d
authored
Mar 24, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add a stub implementation for SHPathPrepareForWrite{A, W}.
parent
65c76849
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
shell32.spec
dlls/shell32/shell32.spec
+2
-2
shell32_main.c
dlls/shell32/shell32_main.c
+18
-0
No files found.
dlls/shell32/shell32.spec
View file @
f86ff01d
...
...
@@ -362,8 +362,8 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(long)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ st
ub SHPathPrepareForWriteA
@ st
ub SHPathPrepareForWriteW
@ st
dcall SHPathPrepareForWriteA(long ptr str long)
@ st
dcall SHPathPrepareForWriteW(long ptr wstr long)
@ stdcall SHQueryRecycleBinA(str ptr)
@ stdcall SHQueryRecycleBinW(wstr ptr)
@ stdcall SHSetLocalizedName(wstr wstr long)
...
...
dlls/shell32/shell32_main.c
View file @
f86ff01d
...
...
@@ -1236,3 +1236,21 @@ HRESULT WINAPI DllCanUnloadNow(void)
FIXME
(
"stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* SHPathPrepareForWriteA (SHELL32.@)
*/
HRESULT
WINAPI
SHPathPrepareForWriteA
(
HWND
hwnd
,
IUnknown
*
modless
,
LPCSTR
path
,
DWORD
flags
)
{
FIXME
(
"%p %p %s 0x%08x
\n
"
,
hwnd
,
modless
,
debugstr_a
(
path
),
flags
);
return
S_OK
;
}
/***********************************************************************
* SHPathPrepareForWriteA (SHELL32.@)
*/
HRESULT
WINAPI
SHPathPrepareForWriteW
(
HWND
hwnd
,
IUnknown
*
modless
,
LPCWSTR
path
,
DWORD
flags
)
{
FIXME
(
"%p %p %s 0x%08x
\n
"
,
hwnd
,
modless
,
debugstr_w
(
path
),
flags
);
return
S_OK
;
}
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