work on fixing import errors
Some checks failed
Build and Test / sonic-transformed (push) Failing after 1m40s
Build and Test / wii-u-chat (push) Failing after 1m40s
Build and Test / super-mario-maker (push) Failing after 1m41s
Build and Test / splatoon (push) Failing after 1m41s
Build and Test / puyopuyo (push) Failing after 1m41s
Build and Test / friends (push) Failing after 1m47s
Build and Test / splatoon-testfire (push) Failing after 1m47s
Build and Test / mario-tennis (push) Failing after 1m47s
Build and Test / minecraft-wiiu (push) Failing after 1m47s
Build and Test / wii-sports-club (push) Failing after 1m47s
Build and Test / fast-racing-neo (push) Failing after 1m47s
Some checks failed
Build and Test / sonic-transformed (push) Failing after 1m40s
Build and Test / wii-u-chat (push) Failing after 1m40s
Build and Test / super-mario-maker (push) Failing after 1m41s
Build and Test / splatoon (push) Failing after 1m41s
Build and Test / puyopuyo (push) Failing after 1m41s
Build and Test / friends (push) Failing after 1m47s
Build and Test / splatoon-testfire (push) Failing after 1m47s
Build and Test / mario-tennis (push) Failing after 1m47s
Build and Test / minecraft-wiiu (push) Failing after 1m47s
Build and Test / wii-sports-club (push) Failing after 1m47s
Build and Test / fast-racing-neo (push) Failing after 1m47s
This commit is contained in:
parent
f1d16e40a1
commit
8db02c00ec
8 changed files with 36 additions and 22 deletions
|
|
@ -8,6 +8,7 @@ ctor = "1.0.8"
|
|||
rnex-rmc = { path = "../../rnex-rmc" }
|
||||
cfg-if = "1.0.4"
|
||||
rnex-base-protos = { path = "../base-protos" }
|
||||
rnex-util = {path = "../rnex-util"}
|
||||
|
||||
[features]
|
||||
third-notif-param = []
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ pub struct MatchmakeParam {
|
|||
|
||||
cfg_if! {
|
||||
if #[cfg(feature = "v3-5-0")]{
|
||||
use rnex_core::kerberos::KerberosDateTime;
|
||||
use rnex_util::date_time::DateTime;
|
||||
#[derive(RmcSerialize, Debug, Clone, Default, PartialEq)]
|
||||
#[rmc_struct(3)]
|
||||
pub struct MatchmakeSession {
|
||||
|
|
@ -52,7 +52,7 @@ cfg_if! {
|
|||
pub session_key: Vec<u8>,
|
||||
pub option0: u32,
|
||||
pub matchmake_param: MatchmakeParam,
|
||||
pub datetime: KerberosDateTime,
|
||||
pub datetime: DateTime,
|
||||
pub user_password: String,
|
||||
pub refer_gid: u32,
|
||||
pub user_password_enabled: bool,
|
||||
|
|
|
|||
Loading…
Reference in a new issue