lrzip/lzma/C/basetyps.h

20 lines
357 B
C
Raw Normal View History

2010-03-29 01:07:08 +02:00
#ifndef _BASETYPS_H
#define _BASETYPS_H
#ifdef HAVE_GCCVISIBILITYPATCH
#define DLLEXPORT __attribute__ ((visibility("default")))
#else
#define DLLEXPORT
#endif
#ifdef __cplusplus
#define STDAPI extern "C" DLLEXPORT HRESULT
#else
#define STDAPI extern DLLEXPORT HRESULT
#endif /* __cplusplus */
typedef GUID IID;
typedef GUID CLSID;
#endif