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 * SfcGetNextProtectedFile [sfc_os.@]
54 BOOL WINAPI
SfcGetNextProtectedFile(HANDLE handle
, PROTECTED_FILE_DATA
*data
)
56 FIXME("%p %p\n", handle
, data
);
60 /******************************************************************
61 * SfcIsFileProtected [sfc_os.@]
63 * Check, if the given File is protected by the System
66 * RpcHandle [I] This must be NULL
67 * ProtFileName [I] Filename with Path to check
70 * Failure: FALSE with GetLastError() != ERROR_FILE_NOT_FOUND
71 * Success: TRUE, when the File is Protected
72 * FALSE with GetLastError() == ERROR_FILE_NOT_FOUND,
73 * when the File is not Protected
77 * We return always the Result for: "File is not Protected"
80 BOOL WINAPI
SfcIsFileProtected(HANDLE RpcHandle
, LPCWSTR ProtFileName
)
82 static BOOL reported
= FALSE
;
85 TRACE("(%p, %s) stub\n", RpcHandle
, debugstr_w(ProtFileName
));
89 FIXME("(%p, %s) stub\n", RpcHandle
, debugstr_w(ProtFileName
));
93 SetLastError(ERROR_FILE_NOT_FOUND
);
97 /******************************************************************
98 * SfcIsKeyProtected [sfc_os.@]
100 * Check, if the given Registry Key is protected by the System
103 * hKey [I] Handle to the root registry key
104 * lpSubKey [I] Name of the subkey to check
105 * samDesired [I] The Registry View to Examine (32 or 64 bit)
108 * Failure: FALSE with GetLastError() != ERROR_FILE_NOT_FOUND
109 * Success: TRUE, when the Key is Protected
110 * FALSE with GetLastError() == ERROR_FILE_NOT_FOUND,
111 * when the Key is not Protected
114 BOOL WINAPI
SfcIsKeyProtected(HKEY hKey
, LPCWSTR lpSubKey
, REGSAM samDesired
)
116 static BOOL reported
= FALSE
;
119 TRACE("(%p, %s) stub\n", hKey
, debugstr_w(lpSubKey
));
123 FIXME("(%p, %s) stub\n", hKey
, debugstr_w(lpSubKey
));
128 SetLastError(ERROR_INVALID_HANDLE
);
132 SetLastError(ERROR_FILE_NOT_FOUND
);