@recallai/desktop-sdk 2024.1.28-ed4c05a2ec5340a21818e8292a2c8f86359502da
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/WebRTC.framework/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/A/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/A/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/A/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/WebRTC +0 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/Current/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/Current/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/Current/WebRTC +0 -0
- package/WebRTC.framework/WebRTC +0 -0
- package/binding.gyp +16 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/A/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/Current/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/Current/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/desktop_sdk_macos +0 -0
- package/index.d.ts +9 -0
- package/index.js +14 -0
- package/package.json +9 -0
- package/src/RecallAiDesktopSdk.h +2 -0
- package/src/main.cc +47 -0
|
@@ -0,0 +1,606 @@
|
|
|
1
|
+
#if 0
|
|
2
|
+
#elif defined(__arm64__) && __arm64__
|
|
3
|
+
// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
4
|
+
#ifndef DESKTOP_SDK_MACOS_SWIFT_H
|
|
5
|
+
#define DESKTOP_SDK_MACOS_SWIFT_H
|
|
6
|
+
#pragma clang diagnostic push
|
|
7
|
+
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
8
|
+
|
|
9
|
+
#if !defined(__has_include)
|
|
10
|
+
# define __has_include(x) 0
|
|
11
|
+
#endif
|
|
12
|
+
#if !defined(__has_attribute)
|
|
13
|
+
# define __has_attribute(x) 0
|
|
14
|
+
#endif
|
|
15
|
+
#if !defined(__has_feature)
|
|
16
|
+
# define __has_feature(x) 0
|
|
17
|
+
#endif
|
|
18
|
+
#if !defined(__has_warning)
|
|
19
|
+
# define __has_warning(x) 0
|
|
20
|
+
#endif
|
|
21
|
+
|
|
22
|
+
#if __has_include(<swift/objc-prologue.h>)
|
|
23
|
+
# include <swift/objc-prologue.h>
|
|
24
|
+
#endif
|
|
25
|
+
|
|
26
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-match"
|
|
27
|
+
#pragma clang diagnostic ignored "-Wauto-import"
|
|
28
|
+
#if defined(__OBJC__)
|
|
29
|
+
#include <Foundation/Foundation.h>
|
|
30
|
+
#endif
|
|
31
|
+
#if defined(__cplusplus)
|
|
32
|
+
#include <cstdint>
|
|
33
|
+
#include <cstddef>
|
|
34
|
+
#include <cstdbool>
|
|
35
|
+
#else
|
|
36
|
+
#include <stdint.h>
|
|
37
|
+
#include <stddef.h>
|
|
38
|
+
#include <stdbool.h>
|
|
39
|
+
#endif
|
|
40
|
+
|
|
41
|
+
#if !defined(SWIFT_TYPEDEFS)
|
|
42
|
+
# define SWIFT_TYPEDEFS 1
|
|
43
|
+
# if __has_include(<uchar.h>)
|
|
44
|
+
# include <uchar.h>
|
|
45
|
+
# elif !defined(__cplusplus)
|
|
46
|
+
typedef uint_least16_t char16_t;
|
|
47
|
+
typedef uint_least32_t char32_t;
|
|
48
|
+
# endif
|
|
49
|
+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
50
|
+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
51
|
+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
52
|
+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
53
|
+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
54
|
+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
55
|
+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
56
|
+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
57
|
+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
58
|
+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
59
|
+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
60
|
+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
61
|
+
#endif
|
|
62
|
+
|
|
63
|
+
#if !defined(SWIFT_PASTE)
|
|
64
|
+
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
65
|
+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
66
|
+
#endif
|
|
67
|
+
#if !defined(SWIFT_METATYPE)
|
|
68
|
+
# define SWIFT_METATYPE(X) Class
|
|
69
|
+
#endif
|
|
70
|
+
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
71
|
+
# if __has_feature(objc_class_property)
|
|
72
|
+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
73
|
+
# else
|
|
74
|
+
# define SWIFT_CLASS_PROPERTY(...)
|
|
75
|
+
# endif
|
|
76
|
+
#endif
|
|
77
|
+
|
|
78
|
+
#if __has_attribute(objc_runtime_name)
|
|
79
|
+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
80
|
+
#else
|
|
81
|
+
# define SWIFT_RUNTIME_NAME(X)
|
|
82
|
+
#endif
|
|
83
|
+
#if __has_attribute(swift_name)
|
|
84
|
+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
85
|
+
#else
|
|
86
|
+
# define SWIFT_COMPILE_NAME(X)
|
|
87
|
+
#endif
|
|
88
|
+
#if __has_attribute(objc_method_family)
|
|
89
|
+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
90
|
+
#else
|
|
91
|
+
# define SWIFT_METHOD_FAMILY(X)
|
|
92
|
+
#endif
|
|
93
|
+
#if __has_attribute(noescape)
|
|
94
|
+
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
95
|
+
#else
|
|
96
|
+
# define SWIFT_NOESCAPE
|
|
97
|
+
#endif
|
|
98
|
+
#if __has_attribute(ns_consumed)
|
|
99
|
+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
100
|
+
#else
|
|
101
|
+
# define SWIFT_RELEASES_ARGUMENT
|
|
102
|
+
#endif
|
|
103
|
+
#if __has_attribute(warn_unused_result)
|
|
104
|
+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
105
|
+
#else
|
|
106
|
+
# define SWIFT_WARN_UNUSED_RESULT
|
|
107
|
+
#endif
|
|
108
|
+
#if __has_attribute(noreturn)
|
|
109
|
+
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
110
|
+
#else
|
|
111
|
+
# define SWIFT_NORETURN
|
|
112
|
+
#endif
|
|
113
|
+
#if !defined(SWIFT_CLASS_EXTRA)
|
|
114
|
+
# define SWIFT_CLASS_EXTRA
|
|
115
|
+
#endif
|
|
116
|
+
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
117
|
+
# define SWIFT_PROTOCOL_EXTRA
|
|
118
|
+
#endif
|
|
119
|
+
#if !defined(SWIFT_ENUM_EXTRA)
|
|
120
|
+
# define SWIFT_ENUM_EXTRA
|
|
121
|
+
#endif
|
|
122
|
+
#if !defined(SWIFT_CLASS)
|
|
123
|
+
# if __has_attribute(objc_subclassing_restricted)
|
|
124
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
125
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
126
|
+
# else
|
|
127
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
128
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
129
|
+
# endif
|
|
130
|
+
#endif
|
|
131
|
+
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
132
|
+
# if __has_attribute(objc_class_stub)
|
|
133
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
134
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
135
|
+
# else
|
|
136
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
137
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
138
|
+
# endif
|
|
139
|
+
#endif
|
|
140
|
+
|
|
141
|
+
#if !defined(SWIFT_PROTOCOL)
|
|
142
|
+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
143
|
+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
144
|
+
#endif
|
|
145
|
+
|
|
146
|
+
#if !defined(SWIFT_EXTENSION)
|
|
147
|
+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
148
|
+
#endif
|
|
149
|
+
|
|
150
|
+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
151
|
+
# if __has_attribute(objc_designated_initializer)
|
|
152
|
+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
153
|
+
# else
|
|
154
|
+
# define OBJC_DESIGNATED_INITIALIZER
|
|
155
|
+
# endif
|
|
156
|
+
#endif
|
|
157
|
+
#if !defined(SWIFT_ENUM_ATTR)
|
|
158
|
+
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
159
|
+
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
160
|
+
# else
|
|
161
|
+
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
162
|
+
# endif
|
|
163
|
+
#endif
|
|
164
|
+
#if !defined(SWIFT_ENUM)
|
|
165
|
+
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
166
|
+
# if __has_feature(generalized_swift_name)
|
|
167
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
168
|
+
# else
|
|
169
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
170
|
+
# endif
|
|
171
|
+
#endif
|
|
172
|
+
#if !defined(SWIFT_UNAVAILABLE)
|
|
173
|
+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
174
|
+
#endif
|
|
175
|
+
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
176
|
+
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
177
|
+
#endif
|
|
178
|
+
#if !defined(SWIFT_AVAILABILITY)
|
|
179
|
+
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
180
|
+
#endif
|
|
181
|
+
#if !defined(SWIFT_WEAK_IMPORT)
|
|
182
|
+
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
183
|
+
#endif
|
|
184
|
+
#if !defined(SWIFT_DEPRECATED)
|
|
185
|
+
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
186
|
+
#endif
|
|
187
|
+
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
188
|
+
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
189
|
+
#endif
|
|
190
|
+
#if __has_feature(attribute_diagnose_if_objc)
|
|
191
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
192
|
+
#else
|
|
193
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
194
|
+
#endif
|
|
195
|
+
#if defined(__OBJC__)
|
|
196
|
+
#if !defined(IBSegueAction)
|
|
197
|
+
# define IBSegueAction
|
|
198
|
+
#endif
|
|
199
|
+
#endif
|
|
200
|
+
#if !defined(SWIFT_EXTERN)
|
|
201
|
+
# if defined(__cplusplus)
|
|
202
|
+
# define SWIFT_EXTERN extern "C"
|
|
203
|
+
# else
|
|
204
|
+
# define SWIFT_EXTERN extern
|
|
205
|
+
# endif
|
|
206
|
+
#endif
|
|
207
|
+
#if !defined(SWIFT_CALL)
|
|
208
|
+
# define SWIFT_CALL __attribute__((swiftcall))
|
|
209
|
+
#endif
|
|
210
|
+
#if defined(__cplusplus)
|
|
211
|
+
#if !defined(SWIFT_NOEXCEPT)
|
|
212
|
+
# define SWIFT_NOEXCEPT noexcept
|
|
213
|
+
#endif
|
|
214
|
+
#else
|
|
215
|
+
#if !defined(SWIFT_NOEXCEPT)
|
|
216
|
+
# define SWIFT_NOEXCEPT
|
|
217
|
+
#endif
|
|
218
|
+
#endif
|
|
219
|
+
#if defined(__cplusplus)
|
|
220
|
+
#if !defined(SWIFT_CXX_INT_DEFINED)
|
|
221
|
+
#define SWIFT_CXX_INT_DEFINED
|
|
222
|
+
namespace swift {
|
|
223
|
+
using Int = ptrdiff_t;
|
|
224
|
+
using UInt = size_t;
|
|
225
|
+
}
|
|
226
|
+
#endif
|
|
227
|
+
#endif
|
|
228
|
+
#if defined(__OBJC__)
|
|
229
|
+
#if __has_feature(modules)
|
|
230
|
+
#if __has_warning("-Watimport-in-framework-header")
|
|
231
|
+
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
232
|
+
#endif
|
|
233
|
+
@import CoreMedia;
|
|
234
|
+
@import ObjectiveC;
|
|
235
|
+
@import ScreenCaptureKit;
|
|
236
|
+
@import SystemExtensions;
|
|
237
|
+
#endif
|
|
238
|
+
|
|
239
|
+
#endif
|
|
240
|
+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
241
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
242
|
+
#if __has_warning("-Wpragma-clang-attribute")
|
|
243
|
+
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
244
|
+
#endif
|
|
245
|
+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
246
|
+
#pragma clang diagnostic ignored "-Wnullability"
|
|
247
|
+
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
|
|
248
|
+
|
|
249
|
+
#if __has_attribute(external_source_symbol)
|
|
250
|
+
# pragma push_macro("any")
|
|
251
|
+
# undef any
|
|
252
|
+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="desktop_sdk_macos",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
253
|
+
# pragma pop_macro("any")
|
|
254
|
+
#endif
|
|
255
|
+
|
|
256
|
+
#if defined(__OBJC__)
|
|
257
|
+
@class SCStream;
|
|
258
|
+
|
|
259
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos23MeetingAppMediaCapturer")
|
|
260
|
+
@interface MeetingAppMediaCapturer : NSObject <SCStreamDelegate, SCStreamOutput>
|
|
261
|
+
- (void)stream:(SCStream * _Nonnull)stream didOutputSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer ofType:(SCStreamOutputType)outputType;
|
|
262
|
+
- (void)stream:(SCStream * _Nonnull)stream didStopWithError:(NSError * _Nonnull)error;
|
|
263
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
264
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
265
|
+
@end
|
|
266
|
+
|
|
267
|
+
@class OSSystemExtensionRequest;
|
|
268
|
+
@class OSSystemExtensionProperties;
|
|
269
|
+
|
|
270
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos31RecallAiCameraExtensionDelegate")
|
|
271
|
+
@interface RecallAiCameraExtensionDelegate : NSObject <OSSystemExtensionRequestDelegate>
|
|
272
|
+
- (OSSystemExtensionReplacementAction)request:(OSSystemExtensionRequest * _Nonnull)request actionForReplacingExtension:(OSSystemExtensionProperties * _Nonnull)existing withExtension:(OSSystemExtensionProperties * _Nonnull)ext SWIFT_WARN_UNUSED_RESULT;
|
|
273
|
+
- (void)requestNeedsUserApproval:(OSSystemExtensionRequest * _Nonnull)request;
|
|
274
|
+
- (void)request:(OSSystemExtensionRequest * _Nonnull)request didFinishWithResult:(OSSystemExtensionRequestResult)result;
|
|
275
|
+
- (void)request:(OSSystemExtensionRequest * _Nonnull)request didFailWithError:(NSError * _Nonnull)error;
|
|
276
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
277
|
+
@end
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
SWIFT_EXTERN void recallai_sdk_init(int8_t const * _Nonnull configJson);
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
SWIFT_EXTERN void recallai_sdk_toggle(BOOL enabled);
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos19ScreenShareRecorder")
|
|
287
|
+
@interface ScreenShareRecorder : NSObject <SCStreamDelegate, SCStreamOutput>
|
|
288
|
+
- (void)stream:(SCStream * _Nonnull)stream didOutputSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer ofType:(SCStreamOutputType)outputType;
|
|
289
|
+
- (void)stream:(SCStream * _Nonnull)stream didStopWithError:(NSError * _Nonnull)error;
|
|
290
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
291
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
292
|
+
@end
|
|
293
|
+
|
|
294
|
+
#endif
|
|
295
|
+
#if defined(__cplusplus)
|
|
296
|
+
#endif
|
|
297
|
+
#if __has_attribute(external_source_symbol)
|
|
298
|
+
# pragma clang attribute pop
|
|
299
|
+
#endif
|
|
300
|
+
#pragma clang diagnostic pop
|
|
301
|
+
#endif
|
|
302
|
+
|
|
303
|
+
#elif defined(__x86_64__) && __x86_64__
|
|
304
|
+
// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
305
|
+
#ifndef DESKTOP_SDK_MACOS_SWIFT_H
|
|
306
|
+
#define DESKTOP_SDK_MACOS_SWIFT_H
|
|
307
|
+
#pragma clang diagnostic push
|
|
308
|
+
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
309
|
+
|
|
310
|
+
#if !defined(__has_include)
|
|
311
|
+
# define __has_include(x) 0
|
|
312
|
+
#endif
|
|
313
|
+
#if !defined(__has_attribute)
|
|
314
|
+
# define __has_attribute(x) 0
|
|
315
|
+
#endif
|
|
316
|
+
#if !defined(__has_feature)
|
|
317
|
+
# define __has_feature(x) 0
|
|
318
|
+
#endif
|
|
319
|
+
#if !defined(__has_warning)
|
|
320
|
+
# define __has_warning(x) 0
|
|
321
|
+
#endif
|
|
322
|
+
|
|
323
|
+
#if __has_include(<swift/objc-prologue.h>)
|
|
324
|
+
# include <swift/objc-prologue.h>
|
|
325
|
+
#endif
|
|
326
|
+
|
|
327
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-match"
|
|
328
|
+
#pragma clang diagnostic ignored "-Wauto-import"
|
|
329
|
+
#if defined(__OBJC__)
|
|
330
|
+
#include <Foundation/Foundation.h>
|
|
331
|
+
#endif
|
|
332
|
+
#if defined(__cplusplus)
|
|
333
|
+
#include <cstdint>
|
|
334
|
+
#include <cstddef>
|
|
335
|
+
#include <cstdbool>
|
|
336
|
+
#else
|
|
337
|
+
#include <stdint.h>
|
|
338
|
+
#include <stddef.h>
|
|
339
|
+
#include <stdbool.h>
|
|
340
|
+
#endif
|
|
341
|
+
|
|
342
|
+
#if !defined(SWIFT_TYPEDEFS)
|
|
343
|
+
# define SWIFT_TYPEDEFS 1
|
|
344
|
+
# if __has_include(<uchar.h>)
|
|
345
|
+
# include <uchar.h>
|
|
346
|
+
# elif !defined(__cplusplus)
|
|
347
|
+
typedef uint_least16_t char16_t;
|
|
348
|
+
typedef uint_least32_t char32_t;
|
|
349
|
+
# endif
|
|
350
|
+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
351
|
+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
352
|
+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
353
|
+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
354
|
+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
355
|
+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
356
|
+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
357
|
+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
358
|
+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
359
|
+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
360
|
+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
361
|
+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
362
|
+
#endif
|
|
363
|
+
|
|
364
|
+
#if !defined(SWIFT_PASTE)
|
|
365
|
+
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
366
|
+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
367
|
+
#endif
|
|
368
|
+
#if !defined(SWIFT_METATYPE)
|
|
369
|
+
# define SWIFT_METATYPE(X) Class
|
|
370
|
+
#endif
|
|
371
|
+
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
372
|
+
# if __has_feature(objc_class_property)
|
|
373
|
+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
374
|
+
# else
|
|
375
|
+
# define SWIFT_CLASS_PROPERTY(...)
|
|
376
|
+
# endif
|
|
377
|
+
#endif
|
|
378
|
+
|
|
379
|
+
#if __has_attribute(objc_runtime_name)
|
|
380
|
+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
381
|
+
#else
|
|
382
|
+
# define SWIFT_RUNTIME_NAME(X)
|
|
383
|
+
#endif
|
|
384
|
+
#if __has_attribute(swift_name)
|
|
385
|
+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
386
|
+
#else
|
|
387
|
+
# define SWIFT_COMPILE_NAME(X)
|
|
388
|
+
#endif
|
|
389
|
+
#if __has_attribute(objc_method_family)
|
|
390
|
+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
391
|
+
#else
|
|
392
|
+
# define SWIFT_METHOD_FAMILY(X)
|
|
393
|
+
#endif
|
|
394
|
+
#if __has_attribute(noescape)
|
|
395
|
+
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
396
|
+
#else
|
|
397
|
+
# define SWIFT_NOESCAPE
|
|
398
|
+
#endif
|
|
399
|
+
#if __has_attribute(ns_consumed)
|
|
400
|
+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
401
|
+
#else
|
|
402
|
+
# define SWIFT_RELEASES_ARGUMENT
|
|
403
|
+
#endif
|
|
404
|
+
#if __has_attribute(warn_unused_result)
|
|
405
|
+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
406
|
+
#else
|
|
407
|
+
# define SWIFT_WARN_UNUSED_RESULT
|
|
408
|
+
#endif
|
|
409
|
+
#if __has_attribute(noreturn)
|
|
410
|
+
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
411
|
+
#else
|
|
412
|
+
# define SWIFT_NORETURN
|
|
413
|
+
#endif
|
|
414
|
+
#if !defined(SWIFT_CLASS_EXTRA)
|
|
415
|
+
# define SWIFT_CLASS_EXTRA
|
|
416
|
+
#endif
|
|
417
|
+
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
418
|
+
# define SWIFT_PROTOCOL_EXTRA
|
|
419
|
+
#endif
|
|
420
|
+
#if !defined(SWIFT_ENUM_EXTRA)
|
|
421
|
+
# define SWIFT_ENUM_EXTRA
|
|
422
|
+
#endif
|
|
423
|
+
#if !defined(SWIFT_CLASS)
|
|
424
|
+
# if __has_attribute(objc_subclassing_restricted)
|
|
425
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
426
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
427
|
+
# else
|
|
428
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
429
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
430
|
+
# endif
|
|
431
|
+
#endif
|
|
432
|
+
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
433
|
+
# if __has_attribute(objc_class_stub)
|
|
434
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
435
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
436
|
+
# else
|
|
437
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
438
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
439
|
+
# endif
|
|
440
|
+
#endif
|
|
441
|
+
|
|
442
|
+
#if !defined(SWIFT_PROTOCOL)
|
|
443
|
+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
444
|
+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
445
|
+
#endif
|
|
446
|
+
|
|
447
|
+
#if !defined(SWIFT_EXTENSION)
|
|
448
|
+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
449
|
+
#endif
|
|
450
|
+
|
|
451
|
+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
452
|
+
# if __has_attribute(objc_designated_initializer)
|
|
453
|
+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
454
|
+
# else
|
|
455
|
+
# define OBJC_DESIGNATED_INITIALIZER
|
|
456
|
+
# endif
|
|
457
|
+
#endif
|
|
458
|
+
#if !defined(SWIFT_ENUM_ATTR)
|
|
459
|
+
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
460
|
+
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
461
|
+
# else
|
|
462
|
+
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
463
|
+
# endif
|
|
464
|
+
#endif
|
|
465
|
+
#if !defined(SWIFT_ENUM)
|
|
466
|
+
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
467
|
+
# if __has_feature(generalized_swift_name)
|
|
468
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
469
|
+
# else
|
|
470
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
471
|
+
# endif
|
|
472
|
+
#endif
|
|
473
|
+
#if !defined(SWIFT_UNAVAILABLE)
|
|
474
|
+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
475
|
+
#endif
|
|
476
|
+
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
477
|
+
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
478
|
+
#endif
|
|
479
|
+
#if !defined(SWIFT_AVAILABILITY)
|
|
480
|
+
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
481
|
+
#endif
|
|
482
|
+
#if !defined(SWIFT_WEAK_IMPORT)
|
|
483
|
+
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
484
|
+
#endif
|
|
485
|
+
#if !defined(SWIFT_DEPRECATED)
|
|
486
|
+
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
487
|
+
#endif
|
|
488
|
+
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
489
|
+
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
490
|
+
#endif
|
|
491
|
+
#if __has_feature(attribute_diagnose_if_objc)
|
|
492
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
493
|
+
#else
|
|
494
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
495
|
+
#endif
|
|
496
|
+
#if defined(__OBJC__)
|
|
497
|
+
#if !defined(IBSegueAction)
|
|
498
|
+
# define IBSegueAction
|
|
499
|
+
#endif
|
|
500
|
+
#endif
|
|
501
|
+
#if !defined(SWIFT_EXTERN)
|
|
502
|
+
# if defined(__cplusplus)
|
|
503
|
+
# define SWIFT_EXTERN extern "C"
|
|
504
|
+
# else
|
|
505
|
+
# define SWIFT_EXTERN extern
|
|
506
|
+
# endif
|
|
507
|
+
#endif
|
|
508
|
+
#if !defined(SWIFT_CALL)
|
|
509
|
+
# define SWIFT_CALL __attribute__((swiftcall))
|
|
510
|
+
#endif
|
|
511
|
+
#if defined(__cplusplus)
|
|
512
|
+
#if !defined(SWIFT_NOEXCEPT)
|
|
513
|
+
# define SWIFT_NOEXCEPT noexcept
|
|
514
|
+
#endif
|
|
515
|
+
#else
|
|
516
|
+
#if !defined(SWIFT_NOEXCEPT)
|
|
517
|
+
# define SWIFT_NOEXCEPT
|
|
518
|
+
#endif
|
|
519
|
+
#endif
|
|
520
|
+
#if defined(__cplusplus)
|
|
521
|
+
#if !defined(SWIFT_CXX_INT_DEFINED)
|
|
522
|
+
#define SWIFT_CXX_INT_DEFINED
|
|
523
|
+
namespace swift {
|
|
524
|
+
using Int = ptrdiff_t;
|
|
525
|
+
using UInt = size_t;
|
|
526
|
+
}
|
|
527
|
+
#endif
|
|
528
|
+
#endif
|
|
529
|
+
#if defined(__OBJC__)
|
|
530
|
+
#if __has_feature(modules)
|
|
531
|
+
#if __has_warning("-Watimport-in-framework-header")
|
|
532
|
+
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
533
|
+
#endif
|
|
534
|
+
@import CoreMedia;
|
|
535
|
+
@import ObjectiveC;
|
|
536
|
+
@import ScreenCaptureKit;
|
|
537
|
+
@import SystemExtensions;
|
|
538
|
+
#endif
|
|
539
|
+
|
|
540
|
+
#endif
|
|
541
|
+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
542
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
543
|
+
#if __has_warning("-Wpragma-clang-attribute")
|
|
544
|
+
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
545
|
+
#endif
|
|
546
|
+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
547
|
+
#pragma clang diagnostic ignored "-Wnullability"
|
|
548
|
+
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
|
|
549
|
+
|
|
550
|
+
#if __has_attribute(external_source_symbol)
|
|
551
|
+
# pragma push_macro("any")
|
|
552
|
+
# undef any
|
|
553
|
+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="desktop_sdk_macos",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
554
|
+
# pragma pop_macro("any")
|
|
555
|
+
#endif
|
|
556
|
+
|
|
557
|
+
#if defined(__OBJC__)
|
|
558
|
+
@class SCStream;
|
|
559
|
+
|
|
560
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos23MeetingAppMediaCapturer")
|
|
561
|
+
@interface MeetingAppMediaCapturer : NSObject <SCStreamDelegate, SCStreamOutput>
|
|
562
|
+
- (void)stream:(SCStream * _Nonnull)stream didOutputSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer ofType:(SCStreamOutputType)outputType;
|
|
563
|
+
- (void)stream:(SCStream * _Nonnull)stream didStopWithError:(NSError * _Nonnull)error;
|
|
564
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
565
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
566
|
+
@end
|
|
567
|
+
|
|
568
|
+
@class OSSystemExtensionRequest;
|
|
569
|
+
@class OSSystemExtensionProperties;
|
|
570
|
+
|
|
571
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos31RecallAiCameraExtensionDelegate")
|
|
572
|
+
@interface RecallAiCameraExtensionDelegate : NSObject <OSSystemExtensionRequestDelegate>
|
|
573
|
+
- (OSSystemExtensionReplacementAction)request:(OSSystemExtensionRequest * _Nonnull)request actionForReplacingExtension:(OSSystemExtensionProperties * _Nonnull)existing withExtension:(OSSystemExtensionProperties * _Nonnull)ext SWIFT_WARN_UNUSED_RESULT;
|
|
574
|
+
- (void)requestNeedsUserApproval:(OSSystemExtensionRequest * _Nonnull)request;
|
|
575
|
+
- (void)request:(OSSystemExtensionRequest * _Nonnull)request didFinishWithResult:(OSSystemExtensionRequestResult)result;
|
|
576
|
+
- (void)request:(OSSystemExtensionRequest * _Nonnull)request didFailWithError:(NSError * _Nonnull)error;
|
|
577
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
578
|
+
@end
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
SWIFT_EXTERN void recallai_sdk_init(int8_t const * _Nonnull configJson);
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
SWIFT_EXTERN void recallai_sdk_toggle(BOOL enabled);
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
SWIFT_CLASS("_TtC17desktop_sdk_macos19ScreenShareRecorder")
|
|
588
|
+
@interface ScreenShareRecorder : NSObject <SCStreamDelegate, SCStreamOutput>
|
|
589
|
+
- (void)stream:(SCStream * _Nonnull)stream didOutputSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer ofType:(SCStreamOutputType)outputType;
|
|
590
|
+
- (void)stream:(SCStream * _Nonnull)stream didStopWithError:(NSError * _Nonnull)error;
|
|
591
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
592
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
593
|
+
@end
|
|
594
|
+
|
|
595
|
+
#endif
|
|
596
|
+
#if defined(__cplusplus)
|
|
597
|
+
#endif
|
|
598
|
+
#if __has_attribute(external_source_symbol)
|
|
599
|
+
# pragma clang attribute pop
|
|
600
|
+
#endif
|
|
601
|
+
#pragma clang diagnostic pop
|
|
602
|
+
#endif
|
|
603
|
+
|
|
604
|
+
#else
|
|
605
|
+
#error unsupported Swift architecture
|
|
606
|
+
#endif
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
//
|
|
2
|
+
// desktop_sdk_macos.h
|
|
3
|
+
// desktop-sdk.macos
|
|
4
|
+
//
|
|
5
|
+
// Created by Elliot Levin on 18/12/2023.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
#import <Foundation/Foundation.h>
|
|
9
|
+
|
|
10
|
+
//! Project version number for desktop_sdk_macos.
|
|
11
|
+
FOUNDATION_EXPORT double desktop_sdk_macosVersionNumber;
|
|
12
|
+
|
|
13
|
+
//! Project version string for desktop_sdk_macos.
|
|
14
|
+
FOUNDATION_EXPORT const unsigned char desktop_sdk_macosVersionString[];
|
|
15
|
+
|
|
16
|
+
// In this header, you should import all the public headers of your framework using statements like #import <desktop_sdk_macos/PublicHeader.h>
|
|
17
|
+
|
|
18
|
+
|
|
Binary file
|