mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-09 01:40:43 +01:00
18 lines
378 B
C
18 lines
378 B
C
#ifndef _NET_H
|
|
#define _NET_H
|
|
|
|
bool Init_Net();
|
|
void Net_Close(int close_wc24);
|
|
void Download_Cover(char *id, bool missing_only, bool verbose);
|
|
void Download_All_Covers(bool missing_only);
|
|
void Download_XML(); // Lustar
|
|
void Download_Plugins();
|
|
void Download_Translation();
|
|
char *get_cc();
|
|
char *auto_cc();
|
|
int gamercard_update(char *ID);
|
|
extern int gamercard_enabled;
|
|
|
|
#endif
|
|
|