2009-05-28 12:12:52 +00:00
|
|
|
#ifndef _UPDATER_H_
|
|
|
|
#define _UPDATER_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2009-06-13 00:24:36 +00:00
|
|
|
extern bool netcheck;
|
|
|
|
|
|
|
|
int Net_Init(char *ip);
|
2009-05-28 12:12:52 +00:00
|
|
|
s32 network_request(const char * request);
|
|
|
|
s32 network_read(void *buf, u32 len);
|
|
|
|
s32 downloadrev(const char * url);
|
|
|
|
void CloseConnection();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|