Get rid of a few C-style struct declarations

This commit is contained in:
Lioncash
2014-07-23 20:26:54 -04:00
parent e91db62f1b
commit 5767691f4e
8 changed files with 23 additions and 21 deletions

View File

@ -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;
};
};

View File

@ -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
{