1 /* 2 * PROJECT: ReactOS apisets 3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) 4 * PURPOSE: Interface for resolving the apisets 5 * COPYRIGHT: Copyright 2024 Mark Jansen <mark.jansen@reactos.org> 6 */ 7 #ifndef APISETS_H 8 #define APISETS_H 9 10 #ifdef __cplusplus 11 extern "C" 12 { 13 #endif 14 15 16 #define APISET_WIN7 (1 << 0) 17 #define APISET_WIN8 (1 << 1) 18 #define APISET_WIN81 (1 << 2) 19 #define APISET_WIN10 (1 << 3) 20 //#define APISET_WIN11 (1 << 4) 21 22 23 NTSTATUS 24 ApiSetResolveToHost(_In_ DWORD ApisetVersion, _In_ PCUNICODE_STRING ApiToResolve, _Out_ PBOOLEAN Resolved, _Out_ PUNICODE_STRING Output); 25 26 #ifdef __cplusplus 27 } 28 #endif 29 30 31 #endif // APISETS_H 32