zeek/auxil/vcpkg/ports/b64/b64_dynamic_config.h
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

15 lines
216 B
C

#ifndef B64_CONFIG_H
#define B64_CONFIG_H
#ifdef _WIN32
#ifdef LIBB64_EXPORTS
#define LIBB64 __declspec(dllexport)
#else
#define LIBB64 __declspec(dllimport)
#endif
#else
#define LIBB64
#endif
#endif