M
MDB
Hello All, I am tring to call a function within a third party DLL and keep
getting the following error:
MissingMethodException
According to the dumpbin results, there is a function calle IBT_on however,
I can't seem to access it.
ordinal hint rva name
1 0 000025SC ?IBT_on@@YAIXZ
Here is what my code looks like that is importing the DLL:
[DllImport("IBT.dll")]
private static extern Int32 IBT_on();
Dll name is IBT.dll
Also, the dll is located in my windows directory and my program directory.
Anyone know what I am doing wrong?
getting the following error:
MissingMethodException
According to the dumpbin results, there is a function calle IBT_on however,
I can't seem to access it.
ordinal hint rva name
1 0 000025SC ?IBT_on@@YAIXZ
Here is what my code looks like that is importing the DLL:
[DllImport("IBT.dll")]
private static extern Int32 IBT_on();
Dll name is IBT.dll
Also, the dll is located in my windows directory and my program directory.
Anyone know what I am doing wrong?