コード例 #1
0
    public static int SDKLogout(int param)
    {
        int ret = 0;

#if SDK_91
        // TODO: API:注销,返回错误码,param: 0,表示注销;1,表示注销,并清除自动登录
        ret = CSDKLogout(param);
#elif SDK_PP
        Bonjour.PPlogout();
#elif SDK_HM
        Entry.ZHPayStartLogout();
#elif SDK_TBT
        SDK.TBLogout();
#endif
        return(ret);
    }
コード例 #2
0
    /// <summary>
    /// 登出
    /// </summary>
    public override void ShowLogout()
    {
#if IOSPP && !UNITY_EDITOR
        Bonjour.PPlogout();
#endif
    }