I read one of the WPF for VB.net book. It says although most of the WPF function is managed code, the "mscorlib.dll" is not managed code.
Then I wondered is it possible to call functions in "mscorlib.dll" to indirectly call wrapped DirectX raw api?
Thanks.
I checked the include and lib folder: there is no mscorlib...related header and static libarary.....Does that mean the saying from the book is incorrect?
I'm looking at connecting to managed code via normal stuff, but this is a side project which I'll do later.
The mscorlib is a COM object interface manager to and from managed code.
You have to use COM to get to the functions, which requires knowing your function GUIDs
This is as far as I've got.. I heard it can be quite messy.
:)
Hi enzechen,
You could check the Mono Project :
http://masm32.com/board/index.php?topic=3858.0
Hi enzechen,
it's not easy, but the proposal of Vortex seems a possibility. You can download the latest release and documentation here (http://www.mono-project.com/). But take care, the resulting applications are fairly large.
Gunther