mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[SFC_OS]
Implement SfcFileException, required by VBox Guest additions to install 3D support. svn path=/trunk/; revision=52609
This commit is contained in:
parent
b509f3318b
commit
0685c73a53
2 changed files with 22 additions and 1 deletions
|
@ -142,3 +142,24 @@ BOOL WINAPI SfcGetNextProtectedFile(HANDLE RpcHandle, PPROTECTED_FILE_DATA ProtF
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* SfcFileException [sfc_os.@]
|
||||
*
|
||||
* Disable the protection for the given file during one minute
|
||||
*
|
||||
* PARAMS
|
||||
* dwUnknown0 [I] Set to 0
|
||||
* pwszFile [I] Name of the file to unprotect
|
||||
* dwUnknown1 [I] Set to -1
|
||||
*
|
||||
* RETURNS
|
||||
* Failure: 1;
|
||||
* Success: 0;
|
||||
*
|
||||
*/
|
||||
DWORD WINAPI SfcFileException(DWORD dwUnknown0, PWCHAR pwszFile, DWORD dwUnknown1)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
/* Always return success */
|
||||
return 0;
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
@ stub sfc_os_2
|
||||
@ stub sfc_os_3
|
||||
@ stub sfc_os_4
|
||||
@ stub sfc_os_5
|
||||
@ stdcall SfcFileException(long ptr long)
|
||||
@ stub sfc_os_6
|
||||
@ stub sfc_os_7
|
||||
@ stdcall SfcGetNextProtectedFile(ptr ptr)
|
||||
|
|
Loading…
Reference in a new issue