1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 19:14:46 +02:00
Files
Bram Matthys 7c1de2fbc8 Unreal3.2.1
2004-07-03 19:04:48 +00:00

13 lines
302 B
C

#ifndef URL_H
#define URL_H
#include "types.h"
int MODFUNC url_is_valid(char *);
char MODFUNC *url_getfilename(char *);
char MODFUNC *download_file(char *, char **);
void MODFUNC download_file_async(char *, time_t, vFP);
void MODFUNC url_do_transfers_async(void);
void MODFUNC url_init(void);
#endif