summaryrefslogtreecommitdiff
path: root/src/public_api.hpp
blob: d073229735a7f7b13fb94beb74588ea10cd39194 (plain)
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
// =================================================================================================
// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This
// project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max-
// width of 100 characters per line.
//
// Author(s):
//   Cedric Nugteren <www.cedricnugteren.nl>
//
// This file provides macro's to define the public API. This is needed when building a Windows DLL.
// Note: this is only used for the C++ interface, the C interface has its own definition included in
// the header file itself.
//
// =================================================================================================

#ifndef CLBLAST_PUBLIC_API_H_
#define CLBLAST_PUBLIC_API_H_

namespace clblast {
// =================================================================================================

// Exports library functions under Windows when building a DLL. See also:
// https://msdn.microsoft.com/en-us/library/a90k134d.aspx
#ifdef _WIN32
  #define PUBLIC_API __declspec(dllexport)
#else
  #define PUBLIC_API
#endif

// =================================================================================================
} // namespace clblast

// CLBLAST_PUBLIC_API_H_
#endif