blob: ff9a270925fd97bbbcf6870b3cc3b36e23d9ba38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ Parsed from GameKit.framework GKSessionError.h }
{$ifdef EXTERNAL_SYMBOLS}
var
GKSessionErrorDomain: NSString; cvar; external;
{$endif}
{$ifdef TYPES}
const
GKSessionInvalidParameterError = 30500;
GKSessionPeerNotFoundError = 30501;
GKSessionDeclinedError = 30502;
GKSessionTimedOutError = 30503;
GKSessionCancelledError = 30504;
GKSessionConnectionFailedError = 30505;
GKSessionConnectionClosedError = 30506;
GKSessionDataTooBigError = 30507;
GKSessionNotConnectedError = 30508;
GKSessionCannotEnableError = 30509;
GKSessionInProgressError = 30510;
GKSessionConnectivityError = 30201;
GKSessionTransportError = 30202;
GKSessionInternalError = 30203;
GKSessionUnknownError = 30204;
GKSessionSystemError = 30205;
type
GKSessionError = clong;
{$endif}
|