diff options
Diffstat (limited to 'otr/dll.h')
-rw-r--r-- | otr/dll.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/otr/dll.h b/otr/dll.h new file mode 100644 index 0000000..f735bc0 --- /dev/null +++ b/otr/dll.h @@ -0,0 +1,10 @@ +#ifndef _DLL_H_
+#define _DLL_H_
+
+#if BUILDING_DLL
+# define DLLIMPORT __declspec (dllexport)
+#else /* Not BUILDING_DLL */
+# define DLLIMPORT __declspec (dllimport)
+#endif /* Not BUILDING_DLL */
+
+#endif /* _DLL_H_ */
|