NCScreensharingController.h 450 B

1234567891011121314151617181920
  1. /**
  2. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <Foundation/Foundation.h>
  6. @class RTCVideoSource;
  7. @class RTCVideoCapturer;
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface NCScreensharingController : NSObject
  10. - (void)startCaptureWithVideoSource:(RTCVideoSource *)videoSource withVideoCapturer:(RTCVideoCapturer *)capturer;
  11. - (void)stopCapture;
  12. @end
  13. NS_ASSUME_NONNULL_END