Hacker News new | past | comments | ask | show | jobs | submit login

> it is possible to "bit bang"... a COM object by arranging everything in memory using plain old C structs ... from compilers that weren't COM aware. Is it possible to do the same with WinRT or it requires the language to be WinRT aware?

Yes, actually, you can do that. I had such code working. Basically declared the IInspectable VTable as a C struct and filled it with my own implementation. Then wrote an "activator" for the relevant classes the same way. [What COM used to call factories.]

Did the same thing with a few VTables for MS-authored WinRT classes calling into them in the other direction.

All this was tedious, I had complicated reasons for wanting to do this and I eventually switched to WRL when those reasons disappeared. Writing COM/WinRT from C++ with something like WRL is much nicer.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: