Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / gamekit / GKVoiceChatService.inc
Size: Mime:
{ Parsed from GameKit.framework GKVoiceChatService.h }


{$ifdef TYPES}
type
  GKVoiceChatServicePtr = ^GKVoiceChatService;
{$endif}

{$ifdef CLASSES}

type
  GKVoiceChatService = objcclass external (NSObject)
  private
    _voiceChatService: id;
  public
    class function defaultVoiceChatService: GKVoiceChatService; message 'defaultVoiceChatService';
    class function isVoIPAllowed: ObjCBOOL; message 'isVoIPAllowed';
    procedure setClient(newValue: GKVoiceChatClientProtocol); message 'setClient:';
    function client: GKVoiceChatClientProtocol; message 'client';
    function startVoiceChatWithParticipantID_error (participantID: NSString; error: NSErrorPtr): ObjCBOOL; message 'startVoiceChatWithParticipantID:error:';
    procedure stopVoiceChatWithParticipantID (participantID: NSString); message 'stopVoiceChatWithParticipantID:';
    function acceptCallID_error (callID: NSInteger; error: NSErrorPtr): ObjCBOOL; message 'acceptCallID:error:';
    procedure denyCallID (callID: NSInteger); message 'denyCallID:';
    procedure receivedRealTimeData_fromParticipantID (audio: NSData; participantID: NSString); message 'receivedRealTimeData:fromParticipantID:';
    procedure receivedData_fromParticipantID (arbitraryData: NSData; participantID: NSString); message 'receivedData:fromParticipantID:';
    procedure setMicrophoneMuted(newValue: ObjCBOOL); message 'setMicrophoneMuted:';
    function isMicrophoneMuted: ObjCBOOL; message 'isMicrophoneMuted';
    procedure setRemoteParticipantVolume(newValue: single); message 'setRemoteParticipantVolume:';
    function remoteParticipantVolume: single; message 'remoteParticipantVolume';
    procedure setOutputMeteringEnabled(newValue: ObjCBOOL); message 'setOutputMeteringEnabled:';
    function isOutputMeteringEnabled: ObjCBOOL; message 'isOutputMeteringEnabled';
    procedure setInputMeteringEnabled(newValue: ObjCBOOL); message 'setInputMeteringEnabled:';
    function isInputMeteringEnabled: ObjCBOOL; message 'isInputMeteringEnabled';
    function outputMeterLevel: single; message 'outputMeterLevel';
    function inputMeterLevel: single; message 'inputMeterLevel';
  end;
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
var
  GKVoiceChatServiceErrorDomain: NSString; cvar; external;
{$endif}