|
-
March 11th, 2009, 10:46 PM
#2
Re: Help Please
It sounds like you are using PInvoke to call a function, but you have not declared it correctly. The signatures do not match. For example, if you were trying to call a function
but you declared it as
Code:
private static extern void Foo(byte* i);
that would cause an error, because you have declared the function incorrectly.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|