Skip to content

Commit

Permalink
Simplify preprocessor #if
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque committed Sep 13, 2021
1 parent b9c67d8 commit 9690ab2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/avfoundation.cs
Expand Up @@ -9660,15 +9660,15 @@ interface AVCaptureFileOutput {
[Export ("resumeRecording")]
void ResumeRecording ();

#if MONOMAC || __MACCATALYST__
#if MONOMAC
[NoMacCatalyst]
[Export ("delegate", ArgumentSemantic.Assign), NullAllowed]
IAVCaptureFileOutputDelegate Delegate { get; set; }
#endif

[MacCatalyst (15,0)]
[NoiOS, MacCatalyst (15,0)]
[Export ("recordingPaused")]
bool RecordingPaused { [Bind ("isRecordingPaused")] get; }
#endif
}

[BaseType (typeof (NSObject))]
Expand Down

0 comments on commit 9690ab2

Please sign in to comment.