]> Nishi Git Mirror - libw3.git/commitdiff
forgot to add extern C
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Tue, 26 Mar 2024 00:48:08 +0000 (00:48 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Tue, 26 Mar 2024 00:48:08 +0000 (00:48 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@264 d27a3e52-49c5-7645-884c-6793ebffc270

Library/W3Tag.h
Library/W3Tcl.h
Library/W3URL.h
W3Version.h.m4

index 4c46fb041524ef46dc5fdc061d34ff7b7b1c132e..d500c15198338cee6acaaf5039d1be6e0ee6303c 100644 (file)
@@ -2,9 +2,17 @@
 #ifndef __W3TAG_H__
 #define __W3TAG_H__
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <stddef.h>
 
 void W3_Tag_Parse(char* data, size_t size, void (*tagfunc)(char* tagname, char* attr), void (*textfunc)(char* data));
 char* W3_Tag_Attr(char* data, const char* name);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
index f935ec5e4a78a7864ecdf896ae19bbeb0e77f224..222ca16bc0bc53a0dedb3784788bb2e5057ca7a7 100644 (file)
@@ -2,8 +2,16 @@
 #ifndef __W3URL_H__
 #define __W3URL_H__
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <tcl.h>
 
 int W3_Init(Tcl_Interp* interp);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
index d628b32cf5a66d2918303fd53f0a587ec8f0c3c3..569c0c013bba70754371afc0844658dd6c31d4fc 100644 (file)
@@ -2,6 +2,10 @@
 #ifndef __W3URL_H__
 #define __W3URL_H__
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct W3URL {
        char* protocol;
        char* host;
@@ -14,4 +18,8 @@ struct W3URL {
 struct W3URL* W3_Parse_URL(const char* url);
 void W3_Free_URL(struct W3URL* url);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
index 274102d7a068c3d917ccf471cb0f75820974ca78..239edf61a9dd1115a70cddcb2c5edfe95c9dafb0 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.20F" \
+#define LIBW3_VERSION "2.20G" \
 SUFFIX
 
 ifdef(`HTTP_SUPPORT', `#define LIBW3_HTTP_SUPPORT', `')