What would this function header be if declared in vb.net?
I currently have:
Its a dll call, what im doing seems to error vb.net and my application just closes without any messages.
Help would be appreciated. :-\
Code:
void LoadUp(LPVOID lpStart, int iStartLen, LPSTR strRes, int nResLen)
Visual Basic:
declare sub LoadUp .... (byval lpStart as int32, byval iStartLen as int32, byref strRes as string, byval nResLen as int32)
Its a dll call, what im doing seems to error vb.net and my application just closes without any messages.
Help would be appreciated. :-\