blob: 27c01a6ff15d7822232cd6041ef173035cadceae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-debug" project.
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#pragma once
#ifdef TEST_LIB_EXPORTS
#define TEST_LIB_API __declspec(dllexport)
#else
#define TEST_LIB_API __declspec(dllimport)
#endif
|