mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
085f135f1a
Sfcfiles.dll contains only a short list of protected files (WIP).
25 lines
370 B
C
25 lines
370 B
C
#ifndef __SFCFILES_H
|
|
#define __SFCFILES_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct _PROTECT_FILE_ENTRY
|
|
{
|
|
PWSTR SourceFileName;
|
|
PWSTR FileName;
|
|
PWSTR InfName;
|
|
} PROTECT_FILE_ENTRY, *PPROTECT_FILE_ENTRY;
|
|
|
|
NTSTATUS
|
|
WINAPI
|
|
SfcGetFiles(
|
|
_Out_ PPROTECT_FILE_ENTRY *ProtFileData,
|
|
_Out_ PULONG FileCount);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|