about summary refs log tree commit diff stats
path: root/src/miasm/runtime/export.h
blob: f21a83a83ac41e43012e65a4c83dfa2cc23cbf70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef MIASM_RT_EXPORT_H
#define MIASM_RT_EXPORT_H

#ifdef _WIN32
#define _MIASM_EXPORT __declspec(dllexport)
#else
#define _MIASM_EXPORT __attribute__((visibility("default")))
#endif

#endif