This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
InfinitShoot/hazel/dllexport.h

11 lines
153 B
C
Raw Permalink Normal View History

2022-07-31 22:27:19 +08:00
#ifndef __HAZEL_DLLEXPORT_H__
#define __HAZEL_DLLEXPORT_H__
#ifdef WIN32
#define DLLEXPORT __declspec(dllexport)
#else
#define DLLEXPORT
#endif
#endif