MeshLib C Docs
Loading...
Searching...
No Matches
exports.h
Go to the documentation of this file.
1#pragma once
2
3#ifndef MRC_API
4# ifdef _WIN32
5# ifdef MRC_BUILD_LIBRARY
6# define MRC_API __declspec(dllexport)
7# else
8# define MRC_API __declspec(dllimport)
9# endif
10# else
11# define MRC_API __attribute__((__visibility__("default")))
12# endif
13#endif
14