WPF + C++ (DLLImport)
Posted by Go crazy for anything that will make you smile.
test.cpp-------------------------------------------- #include extern "C" { __declspec(dllexport) void DisplayHelloFromDLL() { printf ("Hello from DLL !\n"); } } ---------------------------------------------------- test.cs---------------------------------------------- using System; using System.Runtime.InteropServices; class HelloWorld { [DllImport("TestLib.dll")] public static extern void Displa..