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
000b637f
Commit
000b637f
authored
May 02, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sfc_os: Stub SfpVerifyFile().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ea1eae64
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
sfc.spec
dlls/sfc/sfc.spec
+1
-1
sfc_os.c
dlls/sfc_os/sfc_os.c
+7
-0
sfc_os.spec
dlls/sfc_os/sfc_os.spec
+1
-1
No files found.
dlls/sfc/sfc.spec
View file @
000b637f
...
...
@@ -13,4 +13,4 @@
@ stdcall SfcGetNextProtectedFile(long ptr) sfc_os.SfcGetNextProtectedFile
@ stdcall SfcIsFileProtected(ptr wstr) sfc_os.SfcIsFileProtected
@ stdcall SfcIsKeyProtected(long wstr long) sfc_os.SfcIsKeyProtected
@ stdcall SfpVerifyFile() sfc_os.SfpVerifyFile
@ stdcall SfpVerifyFile(
str ptr long
) sfc_os.SfpVerifyFile
dlls/sfc_os/sfc_os.c
View file @
000b637f
...
...
@@ -123,6 +123,13 @@ DWORD WINAPI SfcConnectToServer(DWORD unknown)
return
0
;
}
BOOL
WINAPI
SfpVerifyFile
(
LPCSTR
filename
,
LPSTR
error
,
DWORD
size
)
{
FIXME
(
"%s: stub
\n
"
,
debugstr_a
(
filename
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOL
WINAPI
SRSetRestorePointA
(
RESTOREPOINTINFOA
*
restorepoint
,
STATEMGRSTATUS
*
status
)
{
FIXME
(
"%p %p
\n
"
,
restorepoint
,
status
);
...
...
dlls/sfc_os/sfc_os.spec
View file @
000b637f
...
...
@@ -15,4 +15,4 @@
@ stub SfcTerminateWatcherThread
@ stub SfpDeleteCatalog
@ stub SfpInstallCatalog
@ st
ub SfpVerifyFile
@ st
dcall SfpVerifyFile(str ptr long)
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