mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
f793af2d39
**Big Thanks to CorneliousJD for Hosting the DOLs)** *Reverted ardi's stuff which made codedumps on the Download (sorry ardi commit it again when its fixed)
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
|