Hello.
I'm having some trouble in trying to use functions from a C dll in VB.Net.
I try to read a char array from memory with a pointer.
This is how it is working in c++
[CODE=cpp]typedef int ( WINAPI *INRECV )(int,int*,char *,int,int*,int) ;[/CODE]
and this is what I wrote in vb.net
[CODE=vbnet]Public Class Win32
Public Declare Function inrecv Lib "INTCP32.dl l" (ByVal...