public static nn.Result GetFriendList( ref int outCount, Friend[] outFriends, int offset, FriendFilter filter) { return(new nn.Result()); }
public static nn.Result GetFriendList( ref int outCount, nn.account.NetworkServiceAccountId[] outAccountIds, int offset, FriendFilter filter) { return(new nn.Result()); }
private static extern nn.Result GetFriendList( ref int outCount, [In, Out] Friend[] outFriends, int offset, int count, FriendFilter filter);
public static nn.Result GetFriendList( ref int outCount, Friend[] outFriends, int offset, FriendFilter filter) { return(GetFriendList(ref outCount, outFriends, offset, outFriends.Length, filter)); }
private static extern nn.Result GetFriendList( ref int outCount, [In, Out] nn.account.NetworkServiceAccountId[] outAccountIds, int offset, int count, FriendFilter filter);
public static nn.Result GetFriendList( ref int outCount, nn.account.NetworkServiceAccountId[] outAccountIds, nn.account.Uid uid, int offset, FriendFilter filter) { return(GetFriendList(ref outCount, outAccountIds, uid, offset, outAccountIds.Length, filter)); }