mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-11 03:17:15 +01:00
15 lines
346 B
C
15 lines
346 B
C
#ifndef SFSNORT_DYNAMIC_DETECTION_LIB_H_
|
|
#define SFSNORT_DYNAMIC_DETECTION_LIB_H_
|
|
|
|
#ifdef WIN32
|
|
#ifdef SF_SNORT_DETECTION_DLL
|
|
#define DETECTION_LINKAGE __declspec(dllexport)
|
|
#else
|
|
#define DETECTION_LINKAGE __declspec(dllimport)
|
|
#endif
|
|
#else /* WIN32 */
|
|
#define DETECTION_LINKAGE
|
|
#endif /* WIN32 */
|
|
|
|
#endif /* SFSNORT_DYNAMIC_DETECTION_LIB_H_ */
|
|
|