From f24b79026b6f0434892189dde9f4994c77421316 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sun, 29 Oct 2000 04:52:18 +0000
Subject: [PATCH] Renamed EXPORT32 macro to LZHEXPORT.

---
 src/encode/lzh.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/encode/lzh.h b/src/encode/lzh.h
index f34ef7ad02..b6dd8cff23 100644
--- a/src/encode/lzh.h
+++ b/src/encode/lzh.h
@@ -31,8 +31,8 @@
  * Note: If this box doesn't appear square, then you need to fix your tabs.	*
  ****************************************************************************/
 
-#ifdef EXPORT32
-	#undef EXPORT32
+#ifdef LZHEXPORT
+	#undef LZHEXPORT
 #endif
 
 #ifdef _WIN32
@@ -45,13 +45,13 @@
 		#define LZHCALL
 	#endif
 	#ifdef LZHDLL
-		#define EXPORT32 __declspec( dllexport )
+		#define LZHEXPORT __declspec( dllexport )
 	#else
-		#define EXPORT32 __declspec( dllimport )
+		#define LZHEXPORT __declspec( dllimport )
 	#endif
 #else	/* !_WIN32 */
 	#define LZHCALL
-	#define EXPORT32
+	#define LZHEXPORT
 #endif
 
 #ifndef uchar
@@ -61,8 +61,8 @@
 #ifdef __cplusplus
 extern "C" {
 #endif
-EXPORT32 long LZHCALL lzh_encode(uchar *inbuf, long inlen, uchar *outbuf);
-EXPORT32 long LZHCALL lzh_decode(uchar *inbuf, long inlen, uchar *outbuf);
+LZHEXPORT long LZHCALL lzh_encode(uchar *inbuf, long inlen, uchar *outbuf);
+LZHEXPORT long LZHCALL lzh_decode(uchar *inbuf, long inlen, uchar *outbuf);
 #ifdef __cplusplus
 }
 #endif
-- 
GitLab