aboutsummaryrefslogtreecommitdiff
path: root/ports/b64/b64_dynamic_config.h
blob: b836ca2a5b7593109a8f785a15a986dc93e3abdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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