mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-12 14:08:25 -05:00
15 lines
216 B
C
Executable File
15 lines
216 B
C
Executable File
#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
|