mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Get rid of a few C-style struct declarations
This commit is contained in:
@ -143,7 +143,7 @@ private:
|
||||
|
||||
bool IsValid(u64 _TitleID) const;
|
||||
|
||||
typedef struct ecc_cert_t
|
||||
struct ecc_cert_t
|
||||
{
|
||||
u32 sig_type ;
|
||||
u8 sig [0x3c];
|
||||
@ -154,5 +154,5 @@ private:
|
||||
u32 ng_key_id ;
|
||||
u8 ecc_pubkey [0x3c];
|
||||
u8 padding [0x3c];
|
||||
} ecc_cert_t;
|
||||
};
|
||||
};
|
||||
|
@ -54,7 +54,7 @@ enum SSL_IOCTL
|
||||
IOCTLV_NET_SSL_DEBUGGETTIME = 0x15,
|
||||
};
|
||||
|
||||
typedef struct
|
||||
struct WII_SSL
|
||||
{
|
||||
ssl_context ctx;
|
||||
ssl_session session;
|
||||
@ -66,7 +66,7 @@ typedef struct
|
||||
int sockfd;
|
||||
char hostname[NET_SSL_MAX_HOSTNAME_LEN];
|
||||
bool active;
|
||||
} WII_SSL;
|
||||
};
|
||||
|
||||
class CWII_IPC_HLE_Device_net_ssl : public IWII_IPC_HLE_Device
|
||||
{
|
||||
|
Reference in New Issue
Block a user