No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AVCapture.h 338B

12345678910111213141516
  1. #pragma once
  2. enum
  3. {
  4. avCapturePermissionUnknown = 0,
  5. avCapturePermissionGranted = 1,
  6. avCapturePermissionDenied = 2,
  7. };
  8. enum
  9. {
  10. avVideoCapture = 1,
  11. avAudioCapture = 2,
  12. };
  13. extern "C" int UnityGetAVCapturePermission(int captureType);
  14. extern "C" void UnityRequestAVCapturePermission(int captureType, void* userData);