Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to implement IClosable that maps to System.IDisposable in .Net (WIP) #34

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

forderud
Copy link
Owner

@forderud forderud commented Nov 11, 2024

GOAL: Try to implement the WinRT IClosable interface that is automatically mapped to IDisposable in .Net code.

.Net interop doc: https://github.com/microsoft/CsWinRT/blob/master/docs/interop.md

Build warnings:

>TlbImp : warning TI3015: At least one of the arguments for 'MyInterfaces.IInspectable.GetIids' cannot be marshaled by the runtime marshaler.  Such arguments will therefore be passed as a pointer and may require unsafe code to manipulate.
>TlbImp : warning TI3015: At least one of the arguments for 'MyInterfaces.IClosable.GetIids' cannot be marshaled by the runtime marshaler.  Such arguments will therefore be passed as a pointer and may require unsafe code to manipulate.
>TlbImp : warning TI3015: At least one of the arguments for 'MyInterfaces.MyServerClass.GetIids' cannot be marshaled by the runtime marshaler.  Such arguments will therefore be passed as a pointer and may require unsafe code to manipulate.

Open questions

  • Does TlbImp support WinRT interfaces inheriting IInspectable?
  • Is it possible to use WinRT interfaces in "legacy" COM?

@forderud forderud marked this pull request as draft November 11, 2024 22:16
@forderud forderud changed the title Try to implement IClosable that maps to System.IDisposable in .Net Try to implement IClosable that maps to System.IDisposable in .Net (WIP) Nov 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant