-
Notifications
You must be signed in to change notification settings - Fork 14
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
write iasync info #83
Conversation
WIN-103 Write IAsyncInfo
IAsyncInfo is a manually written type. We don't generate wrappers for it and therefore can't implement it yet in swift |
Just realizing this approach with the checked in hand written file might be silly and can just let the c code generator generate the definitions for these types |
If there's nothing preventing that, it would be a better approach. I'm surprised it would require so much special-casing. |
11cf993
to
c3c0b50
Compare
@tristanlabelle nope! nothing preventing it, latest update removed the handwritten version |
tests/test_component/Sources/test_component/Windows.Foundation+ABI.swift
Show resolved
Hide resolved
Co-authored-by: Jeff <[email protected]>
Co-authored-by: Jeff <[email protected]>
Co-authored-by: Jeff <[email protected]>
IAsyncInfo
is a special interface with it's own header file (much likeIInspectable
). This nuance makes it annoying to work with and so before we just didn't try writing the type.Changes
Fixes WIN-103