Can an x64 program access an x86 COM object on Windows x64? [duplicate]
Possible Duplicate:
Access x86 COM from x64 .NET
I have a 开发者_开发知识库COM object which is only x86.
My program runs native x64 (not through WOW64 emulation).
Is it possible that my program can access the x86 COM object? Or do I need to port the x86 COM object to x64?Yes, you can, but only in out-of-proc mode.
精彩评论