blob: c416bd6f08d1dc1841a1c980bd9a9bc2855146d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
*
* (C) COPYRIGHT 2008-2012 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
*
* A copy of the licence is included with the program, and can also be obtained from Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/**
* @file ump_kernel_platform.h
*
* This file should define UMP_KERNEL_API_EXPORT,
* which dictates how the UMP kernel API should be exported/imported.
* Modify this file, if needed, to match your platform setup.
*/
#ifndef _UMP_KERNEL_PLATFORM_H_
#define _UMP_KERNEL_PLATFORM_H_
/**
* @addtogroup ump_api
* @{
*/
/** @addtogroup ump_kernel_space_api
* @{ */
/**
* A define which controls how UMP kernel space API functions are imported and exported.
*
* Functions exported by the kernel driver is tagged with UMP_KERNEL_API_EXPORT to allow
* the compiler/build system/OS loader to detect and handle functions which is to be exported/imported from a kernel driver.@n
* This define should be set by the implementor of the UMP API to match their needs if needed.
*
* Typical usage example in the driver:
*
* UMP_KERNEL_API_EXPORT void my_kernel_api(void);
*/
#if defined(_WIN32)
#if defined(UMP_BUILDING_UMP_LIBRARY)
#define UMP_KERNEL_API_EXPORT __declspec(dllexport)
#else
#define UMP_KERNEL_API_EXPORT __declspec(dllimport)
#endif
#else
#define UMP_KERNEL_API_EXPORT
#endif
/** @} */ /* end group ump_kernel_space_api */
/** @} */ /* end group ump_api */
#endif /* _UMP_KERNEL_PLATFORM_H_ */
|