Redesigned several icons and reduced CD-ROM, floppy, and hard disk icons to just one instead of a different icon for each bus or type;

Added a network activity indicator icon;
The Video section of the Settings dialog is now called Display.
This commit is contained in:
OBattler
2017-08-22 02:16:15 +02:00
parent ff24cba006
commit cc240e288f
93 changed files with 235 additions and 113 deletions

View File

@@ -164,6 +164,22 @@ network_slirp_close(void)
}
/* Test SLiRP - 1 = success, 0 = failure. */
int
network_slirp_test(void)
{
if (slirp_init() != 0) {
pclog("SLiRP could not be initialized!\n");
return 0;
}
else
{
slirp_exit(0);
return 1;
}
}
/* Send a packet to the SLiRP interface. */
void
network_slirp_in(uint8_t *pkt, int pkt_len)