PDF SDK Documentation

Comprehensive Guide for Developers: Features, Integration, and API Reference

Loading...
Searching...
No Matches
export.h
1// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3#ifndef PDFSDK_EXPORT_H_INCLUDED_
4#define PDFSDK_EXPORT_H_INCLUDED_
5
6#ifdef _WIN32
7#define PDFSDK_CALLCONV __cdecl
8#define PDFSDK_IMPORT_ __declspec(dllimport)
9#define PDFSDK_EXPORT_ __declspec(dllexport)
10#else
11#define PDFSDK_CALLCONV
12#define PDFSDK_IMPORT_
13#define PDFSDK_EXPORT_ __attribute__((visibility("default")))
14#endif
15
16#endif // PDFSDK_EXPORT_H_INCLUDED_