PDF SDK Documentation
Comprehensive Guide for Developers: Features, Integration, and API Reference
Loading...
Searching...
No Matches
api_macro.h
1
// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3
#ifndef PDFSDK_CORE_API_MACRO_H_INCLUDED_
4
#define PDFSDK_CORE_API_MACRO_H_INCLUDED_
5
6
#include <pdfsdk/export.h>
7
8
#ifdef PDF_CORE_STATIC
9
#define PDF_CORE_API
10
#else
11
#ifdef PDF_CORE_EXPORTS
12
#define PDF_CORE_API PDFSDK_EXPORT_
13
#else
14
#define PDF_CORE_API PDFSDK_IMPORT_
15
#endif
16
#endif
17
18
#endif
// PDFSDK_CORE_API_MACRO_H_INCLUDED_