Mercurial > mplayer.hg
view url.h @ 854:76ca00724e12
gcc warnings fixed - patch by Aelius aelius@wish.net
author | arpi_esp |
---|---|
date | Wed, 23 May 2001 19:51:52 +0000 |
parents | 9141234715a2 |
children | ede5785faa53 |
line wrap: on
line source
#ifndef URL_H #define URL_H typedef struct { char *url; char *protocol; char *hostname; char *file; unsigned int port; } URL_t; URL_t* set_url(char* url); void free_url(URL_t* url); #endif