mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[SFCFILES] Add sfcfiles dll and header file
Sfcfiles.dll contains only a short list of protected files (WIP).
This commit is contained in:
parent
4cf9b7985e
commit
085f135f1a
6 changed files with 101 additions and 0 deletions
25
sdk/include/psdk/sfcfiles.h
Normal file
25
sdk/include/psdk/sfcfiles.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue