Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/browserenginecore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using ObjCRuntime;

namespace BrowserEngineCore {
[NoMacCatalyst, NoTV, NoMac, iOS (26, 0)]
[MacCatalyst (26, 4), NoTV, NoMac, iOS (26, 0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface BEAudioSession {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# We're not exposing BrowserEngineKi/Core on Mac Catalyst for now, because introspection complains
# about pretty much everything, which makes me question whether it's supposed to be available
# on Mac Catalyst or not. So for now leave it out of Mac Catalyst.
!missing-selector! BEAudioSession::availableOutputs not bound
!missing-selector! BEAudioSession::initWithAudioSession: not bound
!missing-selector! BEAudioSession::preferredOutput not bound
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Low-level C P/Invoke functions for JIT memory management and kernel events.
# These use hidden visibility, always_inline, or complex kernel structs (kevent)
# and are not suitable for .NET consumption.
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness_impl is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness_impl is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_with_witness_supported is not bound
!missing-pinvoke! be_kevent is not bound
!missing-pinvoke! be_kevent64 is not bound
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Low-level C P/Invoke functions for JIT memory management.
# These use hidden visibility or always_inline and are not suitable for .NET consumption.
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness_impl is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness_impl is not bound
!missing-pinvoke! be_memory_inline_jit_restrict_with_witness_supported is not bound
!missing-pinvoke! be_kevent is not bound
!missing-pinvoke! be_kevent64 is not bound
Loading