mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-07-15 19:54:45 +00:00
11 lines
283 B
C
11 lines
283 B
C
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
#ifndef MSCCLPP_API_H_
|
|
#define MSCCLPP_API_H_
|
|
|
|
#define MSCCLPP_API extern "C" __attribute__((visibility("default")))
|
|
#define MSCCLPP_API_CPP __attribute__((visibility("default")))
|
|
|
|
#endif // MSCCLPP_API_H_
|