|
Odamex
Setting the Standard in Multiplayer Doom
|
00001 /* $Id: miniwget.h,v 1.6 2010/12/09 16:11:33 nanard Exp $ */ 00002 /* Project : miniupnp 00003 * Author : Thomas Bernard 00004 * Copyright (c) 2005 Thomas Bernard 00005 * This software is subject to the conditions detailed in the 00006 * LICENCE file provided in this distribution. 00007 * */ 00008 #ifndef __MINIWGET_H__ 00009 #define __MINIWGET_H__ 00010 00011 #include "declspec.h" 00012 00013 #ifdef __cplusplus 00014 extern "C" { 00015 #endif 00016 00017 LIBSPEC void * getHTTPResponse(int s, int * size); 00018 00019 LIBSPEC void * miniwget(const char *, int *); 00020 00021 LIBSPEC void * miniwget_getaddr(const char *, int *, char *, int); 00022 00023 int parseURL(const char *, char *, unsigned short *, char * *); 00024 00025 #ifdef __cplusplus 00026 } 00027 #endif 00028 00029 #endif 00030