19 lines
286 B
C
19 lines
286 B
C
|
//
|
||
|
// Created by Apache on 2022/7/15.
|
||
|
//
|
||
|
|
||
|
#ifndef TELC_EXPORTED_H
|
||
|
#define TELC_EXPORTED_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
# ifdef WIN_EXPORT
|
||
|
# define EXPORTED __declspec( dllexport )
|
||
|
# else
|
||
|
# define EXPORTED __declspec( dllimport )
|
||
|
# endif
|
||
|
#else
|
||
|
# define EXPORTED
|
||
|
#endif
|
||
|
|
||
|
#endif //TELC_EXPORTED_H
|