Call C++ native dll from C# code -
i wrote total native c++ code dll , want call method thru c# code using p/invoke. need change in properties of native dll ?
p/invoking requires stdcall convention. if functions declarations preceeded __stdcall. otherwise stack gets corrupted.
Comments
Post a Comment