mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
19 lines
273 B
C
19 lines
273 B
C
|
#ifndef _UPDATER_H_
|
||
|
#define _UPDATER_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
s32 network_request(const char * request);
|
||
|
s32 network_read(void *buf, u32 len);
|
||
|
s32 downloadrev(const char * url);
|
||
|
void CloseConnection();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|