ReactOS 0.4.16-dev-1946-g52006dd
spapisup.h
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Setup Library
4 * FILE: base/setup/lib/spapisup.h
5 * PURPOSE: Interfacing with Setup* API support functions
6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7 */
8
9#pragma once
10
11/* Make setupapi.h to not define the API as exports to the DLL */
12#ifdef __REACTOS__
13#define _SETUPAPI_
14#endif
15
16/* Architecture name suffixes for architecture-specific INF sections */
17#if defined(_M_IX86)
18#define INF_ARCH L"x86"
19#elif defined(_M_AMD64)
20#define INF_ARCH L"amd64"
21#elif defined(_M_ARM)
22#define INF_ARCH L"arm"
23#elif defined(_M_ARM64)
24#define INF_ARCH L"arm64"
25#elif defined(_M_IA64)
26#define INF_ARCH L"ia64"
27#elif defined(_M_PPC)
28#define INF_ARCH L"ppc"
29#endif
30
31/* EOF */