mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
0d0d54ea66
*Moved the WC24 Shutdown to networkop.cpp
20 lines
450 B
C
20 lines
450 B
C
#ifndef _NETWORKOPS_H_
|
|
#define _NETWORKOPS_H_
|
|
|
|
void Initialize_Network(void);
|
|
bool IsNetworkInit(void);
|
|
char * GetNetworkIP(void);
|
|
bool ShutdownWC24();
|
|
s32 network_request(const char * request);
|
|
s32 network_read(u8 *buf, u32 len);
|
|
s32 download_request(const char * url);
|
|
void CloseConnection();
|
|
int CheckUpdate();
|
|
|
|
void HaltNetworkThread();
|
|
void ResumeNetworkThread();
|
|
void InitNetworkThread();
|
|
void ShutdownNetworkThread();
|
|
|
|
#endif
|