コード例 #1
0
ファイル: NativeBindings.cs プロジェクト: arlm/safe_mobile
 public void AuthAccountInfo(IntPtr authPtr, IntPtr self, AuthAccountInfoCb callback)
 {
     AuthAccountInfoNative(authPtr, self, callback);
 }
コード例 #2
0
ファイル: NativeBindings.cs プロジェクト: arlm/safe_mobile
 public static extern void AuthAccountInfoNative(IntPtr authPtr, IntPtr self, AuthAccountInfoCb callback);
コード例 #3
0
 public void AuthAccountInfo(IntPtr authPtr, AuthAccountInfoCb callback)
 {
     AuthAccountInfoNative(authPtr, callback.ToHandlePtr(), OnAuthAccountInfoCb);
 }