X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=dll%2Fwin32%2Fsfc_os%2Fsfc_os.c;h=57a104d11393dabc35fe4fa77e6bb4813d59e7de;hp=84fb96bace6fe344ddd0f1c73ad00be597e9c34b;hb=b1d8a4df819c95bcb81cd8d6e8d9a397125147a9;hpb=8b36c2fed55e2160b52793adcf111914ded5d10a diff --git a/dll/win32/sfc_os/sfc_os.c b/dll/win32/sfc_os/sfc_os.c index 84fb96bace6..57a104d1139 100644 --- a/dll/win32/sfc_os/sfc_os.c +++ b/dll/win32/sfc_os/sfc_os.c @@ -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; +} \ No newline at end of file