fixed the alternate device mode.
[open-ps2-loader.git] / include / ethsupport.h
blob1b21c6a8c600733703a9312881f8a90c5633ff0c
1 #ifndef __ETH_SUPPORT_H
2 #define __ETH_SUPPORT_H
4 #include "include/iosupport.h"
6 #ifdef VMC
7 #include "include/mcemu.h"
8 typedef struct {
9 int active; /* Activation flag */
10 char fname[32]; /* File name (memorycard?.bin) */
11 u16 fid; /* SMB File ID */
12 int flags; /* Card flag */
13 vmc_spec_t specs; /* Card specifications */
14 } smb_vmc_infos_t;
15 #endif
17 void ethInit();
18 item_list_t* ethGetObject(int initOnly);
20 int ethSMBConnect(void);
21 int ethSMBDisconnect(void);
23 #endif