summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_api.h
blob: 45d895aa2cb27dc4d8e7ea00a90b7c00f3b8b067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _NT_API_H_
#define _NT_API_H_

#include "nt_abi.h"
#include "nt_compiler.h"

#if   defined (NTAPI_EXPORT)
#define	__ntapi_api __attr_export__
#elif defined (NTAPI_IMPORT)
#define	__ntapi_api __attr_import__
#elif defined (NTAPI_STATIC)
#define	__ntapi_api
#else
#define	__ntapi_api
#endif

#endif