Implement SfcFileException, required by VBox Guest additions to install 3D support.

svn path=/trunk/; revision=52609
This commit is contained in:
Sylvain Petreolle 2011-07-10 15:05:14 +00:00
parent b509f3318b
commit 0685c73a53
2 changed files with 22 additions and 1 deletions

View file

@ -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;
}

View file

@ -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)