aboutsummaryrefslogtreecommitdiff
path: root/lib/win32/libmms_win32/src/uri.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/win32/libmms_win32/src/uri.h')
-rw-r--r--lib/win32/libmms_win32/src/uri.h94
1 files changed, 0 insertions, 94 deletions
diff --git a/lib/win32/libmms_win32/src/uri.h b/lib/win32/libmms_win32/src/uri.h
deleted file mode 100644
index c7a93edfe9..0000000000
--- a/lib/win32/libmms_win32/src/uri.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/* GNet - Networking library
- * Copyright (C) 2000-2001 David Helder, David Bolcsfoldi
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-
-#ifndef _GNET_URI_H
-#define _GNET_URI_H
-
-#include <glib.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-
-/**
- * GURI:
- * @scheme: Scheme (or protocol)
- * @userinfo: User info
- * @hostname: Host name
- * @port: Port number
- * @path: Path
- * @query: Query
- * @fragment: Fragment
- *
- * The #GURI structure represents a URI. All fields in this
- * structure are publicly readable.
- *
- **/
-typedef struct _GURI GURI;
-
-struct _GURI
-{
- char* scheme;
- char* user;
- char* passwd;
- char* hostname;
- gint port;
- char* path;
- char* query;
- char* fragment;
-};
-
-
-
-GURI* gnet_uri_new (const char* uri);
-GURI* gnet_uri_new_fields (const char* scheme, const char* hostname,
- const gint port, const char* path);
-GURI*
-gnet_uri_new_fields_all (const char* scheme, const char* user,
- const char* passwd, const char* hostname,
- const gint port, const char* path,
- const char* query, const char* fragment);
-GURI* gnet_uri_clone (const GURI* uri);
-void gnet_uri_delete (GURI* uri);
-
-gboolean gnet_uri_equal (gconstpointer p1, gconstpointer p2);
-guint gnet_uri_hash (gconstpointer p);
-
-void gnet_uri_escape (GURI* uri);
-void gnet_uri_unescape (GURI* uri);
-
-char* gnet_uri_get_string (const GURI* uri);
-
-void gnet_uri_set_scheme (GURI* uri, const char* scheme);
-void gnet_uri_set_userinfo (GURI* uri, const char* user, const char* passwd);
-void gnet_uri_set_hostname (GURI* uri, const char* hostname);
-void gnet_uri_set_port (GURI* uri, gint port);
-void gnet_uri_set_path (GURI* uri, const char* path);
-void gnet_uri_set_query (GURI* uri, const char* query);
-void gnet_uri_set_fragment (GURI* uri, const char* fragment);
-
-char* gnet_mms_helper(const GURI* uri);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* _GNET_URI_H */