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
ce18bd4d
Commit
ce18bd4d
authored
Mar 11, 2023
by
Daniel Tang
Committed by
Alexandre Julliard
Mar 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wofutil: Stub WofIsExternalFile().
parent
14719248
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
main.c
dlls/wofutil/main.c
+9
-0
wofutil.spec
dlls/wofutil/wofutil.spec
+1
-1
No files found.
dlls/wofutil/main.c
View file @
ce18bd4d
...
...
@@ -23,6 +23,15 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
wofutil
);
HRESULT
WINAPI
WofIsExternalFile
(
const
WCHAR
*
path
,
BOOL
*
result
,
ULONG
*
provider
,
void
*
ptr
,
ULONG
*
length
)
{
FIXME
(
"%s, %p, %p, %p, %p"
,
debugstr_w
(
path
),
result
,
provider
,
ptr
,
length
);
if
(
result
)
*
result
=
FALSE
;
if
(
provider
)
*
provider
=
0
;
if
(
length
)
*
length
=
0
;
return
S_OK
;
}
BOOL
WINAPI
WofShouldCompressBinaries
(
const
WCHAR
*
volume
,
ULONG
*
alg
)
{
FIXME
(
"%s, %p
\n
"
,
debugstr_w
(
volume
),
alg
);
...
...
dlls/wofutil/wofutil.spec
View file @
ce18bd4d
@ stub WofEnumEntries
@ stub WofFileEnumFiles
@ stub WofGetDriverVersion
@ st
ub WofIsExternalFile
@ st
dcall WofIsExternalFile(wstr ptr ptr ptr ptr)
@ stub WofSetFileDataLocation
@ stdcall WofShouldCompressBinaries(wstr ptr)
@ stub WofWimAddEntry
...
...
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