mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
26 lines
355 B
C
26 lines
355 B
C
|
#ifndef APISETSP_H
|
||
|
#define APISETSP_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
#include "apisets.h"
|
||
|
|
||
|
typedef struct _ROS_APISET
|
||
|
{
|
||
|
const UNICODE_STRING Name;
|
||
|
const UNICODE_STRING Target;
|
||
|
DWORD dwOsVersions;
|
||
|
} ROS_APISET;
|
||
|
|
||
|
extern const ROS_APISET g_Apisets[];
|
||
|
extern const LONG g_ApisetsCount;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // APISETSP_H
|