Mercurial > games > semicongine
comparison fuhtark_test/include/winapi/sfc.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 /** | |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | |
| 3 * This file is part of the w64 mingw-runtime package. | |
| 4 * No warranty is given; refer to the file DISCLAIMER within this package. | |
| 5 */ | |
| 6 #ifndef _SFC_ | |
| 7 #define _SFC_ | |
| 8 | |
| 9 #ifdef __cplusplus | |
| 10 extern "C" { | |
| 11 #endif | |
| 12 | |
| 13 #define SFC_DISABLE_NORMAL 0 | |
| 14 #define SFC_DISABLE_ASK 1 | |
| 15 #define SFC_DISABLE_ONCE 2 | |
| 16 #define SFC_DISABLE_SETUP 3 | |
| 17 #define SFC_DISABLE_NOPOPUPS 4 | |
| 18 | |
| 19 #define SFC_SCAN_NORMAL 0 | |
| 20 #define SFC_SCAN_ALWAYS 1 | |
| 21 #define SFC_SCAN_ONCE 2 | |
| 22 #define SFC_SCAN_IMMEDIATE 3 | |
| 23 | |
| 24 #define SFC_QUOTA_DEFAULT 50 | |
| 25 #define SFC_QUOTA_ALL_FILES ((ULONG)-1) | |
| 26 | |
| 27 #define SFC_IDLE_TRIGGER L"WFP_IDLE_TRIGGER" | |
| 28 | |
| 29 typedef struct _PROTECTED_FILE_DATA { | |
| 30 WCHAR FileName[MAX_PATH]; | |
| 31 DWORD FileNumber; | |
| 32 } PROTECTED_FILE_DATA,*PPROTECTED_FILE_DATA; | |
| 33 | |
| 34 WINBOOL WINAPI SfcGetNextProtectedFile(HANDLE RpcHandle,PPROTECTED_FILE_DATA ProtFileData); | |
| 35 WINBOOL WINAPI SfcIsFileProtected(HANDLE RpcHandle,LPCWSTR ProtFileName); | |
| 36 WINBOOL WINAPI SfpVerifyFile(LPCSTR pszFileName,LPSTR pszError,DWORD dwErrSize); | |
| 37 | |
| 38 #ifdef __cplusplus | |
| 39 } | |
| 40 #endif | |
| 41 #endif |
