[XNA] Managed-Native interop on 360

Started by
1 comment, last by _Sauce_ 13 years, 2 months ago
I'd like to make use of a native C++ library in my XNA game. I plan to deploy to the Xbox360 and I'm wondering; if I wrap the library with managed code (C++ / CLR), will I be able to run it on the Xbox? I can link against it either statically or dynamically - if either will make a difference. I have access to the full source, so creating the wrapper shouldn't be a problem.

My only other alternative is to create a managed counterpart of the library, which would be quite time-consuming.
Advertisement
Native code is not allowed on the Xbox with XNA Creators Club so you will need to port said library.

C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!


Native code is not allowed on the Xbox with XNA Creators Club so you will need to port said library.

Thanks

This topic is closed to new replies.

Advertisement