// Copyright (c) 2020 Egor Tensin // 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