xref: /reactos/sdk/lib/apisets/apisetsp.h (revision 24a56f89)
1 #ifndef APISETSP_H
2 #define APISETSP_H
3 
4 #ifdef __cplusplus
5 extern "C"
6 {
7 #endif
8 
9 #include "apisets.h"
10 
11 typedef struct _ROS_APISET
12 {
13     const UNICODE_STRING Name;
14     const UNICODE_STRING Target;
15     DWORD dwOsVersions;
16 } ROS_APISET;
17 
18 extern const ROS_APISET g_Apisets[];
19 extern const LONG g_ApisetsCount;
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif // APISETSP_H
26