2 * Implementation of the System File Checker (Windows File Protection)
4 * Copyright 2006 Detlef Riekenberg
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(sfc
);
32 /******************************************************************
35 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
37 TRACE("(%p, %d, %p)\n",hinstDLL
, fdwReason
, lpvReserved
);
41 case DLL_WINE_PREATTACH
:
42 return FALSE
; /* prefer native version */
44 case DLL_PROCESS_ATTACH
:
45 DisableThreadLibraryCalls( hinstDLL
);
51 /******************************************************************
52 * SfcIsFileProtected [sfc_os.@]
54 * Check, if the given File is protected by the System
57 * RpcHandle [I] This must be NULL
58 * ProtFileName [I] Filename with Path to check
61 * Failure: FALSE with GetLastError() != ERROR_FILE_NOT_FOUND
62 * Success: TRUE, when the File is Protected
63 * FALSE with GetLastError() == ERROR_FILE_NOT_FOUND,
64 * when the File is not Protected
68 * We return always the Result for: "File is not Protected"
71 BOOL WINAPI
SfcIsFileProtected(HANDLE RpcHandle
, LPCWSTR ProtFileName
)
73 static BOOL reported
= FALSE
;
76 TRACE("(%p, %s) stub\n", RpcHandle
, debugstr_w(ProtFileName
));
80 FIXME("(%p, %s) stub\n", RpcHandle
, debugstr_w(ProtFileName
));
84 SetLastError(ERROR_FILE_NOT_FOUND
);
88 /******************************************************************
89 * SfcIsKeyProtected [sfc_os.@]
91 * Check, if the given Registry Key is protected by the System
94 * hKey [I] Handle to the root registry key
95 * lpSubKey [I] Name of the subkey to check
96 * samDesired [I] The Registry View to Examine (32 or 64 bit)
99 * Failure: FALSE with GetLastError() != ERROR_FILE_NOT_FOUND
100 * Success: TRUE, when the Key is Protected
101 * FALSE with GetLastError() == ERROR_FILE_NOT_FOUND,
102 * when the Key is not Protected
105 BOOL WINAPI
SfcIsKeyProtected(HKEY hKey
, LPCWSTR lpSubKey
, REGSAM samDesired
)
107 static BOOL reported
= FALSE
;
110 TRACE("(%p, %s) stub\n", hKey
, debugstr_w(lpSubKey
));
114 FIXME("(%p, %s) stub\n", hKey
, debugstr_w(lpSubKey
));
119 SetLastError(ERROR_INVALID_HANDLE
);
123 SetLastError(ERROR_FILE_NOT_FOUND
);