]> Nishi Git Mirror - libw3.git/commitdiff
gopher headers
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 26 Jan 2024 23:21:33 +0000 (23:21 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 26 Jan 2024 23:21:33 +0000 (23:21 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@97 d27a3e52-49c5-7645-884c-6793ebffc270

Library/Gopher.c [new file with mode: 0644]
Library/Makefile
Library/W3Gopher.h [new file with mode: 0644]
W3Version.h.p

diff --git a/Library/Gopher.c b/Library/Gopher.c
new file mode 100644 (file)
index 0000000..3f64add
--- /dev/null
@@ -0,0 +1,5 @@
+/* $Id$ */
+#include "W3Gopher.h"
+
+void __W3_Gopher_Request(struct W3* w3) {
+}
index aba32481813b226ecdb8f139c8995acd9e669a71..d9977e559f792b08b54754737e712ea392f47400 100644 (file)
@@ -1,7 +1,7 @@
 # $Id$
 .PHONY: clean install
 
-OBJS = ./Core.o ./Util.o ./DNS.o ./HTTP.o ./File.o ./URL.o
+OBJS = ./Core.o ./Util.o ./DNS.o ./HTTP.o ./Gopher.o ./File.o ./URL.o
 
 ifeq ($(WINDOWS),YES)
 ./w3.dll: $(OBJS)
diff --git a/Library/W3Gopher.h b/Library/W3Gopher.h
new file mode 100644 (file)
index 0000000..df1a742
--- /dev/null
@@ -0,0 +1,17 @@
+/* $Id$ */
+#ifndef __W3GOPHER_H__
+#define __W3GOPHER_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "W3Core.h"
+
+void __W3_Gopher_Request(struct W3* w3);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
index 6f0febad96fc6f97e4d433f0ad2e35306c55dbb6..c8f982cc5db83315838db2d7747c6c636abb46e4 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "1.5C" \
+#define LIBW3_VERSION "1.6" \
 SUFFIX
 
 #ifdef __cplusplus