--- /dev/null
+/* $Id$ */
+#include "W3Gopher.h"
+
+void __W3_Gopher_Request(struct W3* w3) {
+}
# $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)
--- /dev/null
+/* $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
extern "C" {
#endif
-#define LIBW3_VERSION "1.5C" \
+#define LIBW3_VERSION "1.6" \
SUFFIX
#ifdef __cplusplus