dvdbrander
Gebruiker
- Lid geworden
- 13 apr 2010
- Berichten
- 34
deze error krijg ik met dit script:
[CPP]FARPROC procid;HINSTANCE dllid;
int tcp;
int tcplisten, tcpconnected;
int initserver(void)
{ //types inladen
typedef int (__cdecl * ty_int_1)(int);
typedef int (__cdecl * ty_int_2)(int,int);
typedef int (__cdecl * ty_int_3)(int,int,int);
//dll inladen
HINSTANCE dllid = LoadLibrary(L"39dll.dll");
//functies inladen
FARPROC procid = GetProcAddress(HMODULE (dllid),"TcpListen");
ty_int_3 tcplisten;
tcplisten = ty_int_3(procid);
procid = GetProcAddress(HMODULE (dllid),"TcpConnected");
ty_int_1 tcpconnected;
tcpconnected = ty_int_1(procid);
/* The actual call to the function contained in the dll */
int tcp = tcplisten(12563,10, 1);
/* The return val from the dll */
return tcpconnected(tcp);
} [/CPP]
bij de return.
heeft iemand een idee wat er fout is, of moet ik daarvoor een deel van de dll posten?
[CPP]FARPROC procid;HINSTANCE dllid;
int tcp;
int tcplisten, tcpconnected;
int initserver(void)
{ //types inladen
typedef int (__cdecl * ty_int_1)(int);
typedef int (__cdecl * ty_int_2)(int,int);
typedef int (__cdecl * ty_int_3)(int,int,int);
//dll inladen
HINSTANCE dllid = LoadLibrary(L"39dll.dll");
//functies inladen
FARPROC procid = GetProcAddress(HMODULE (dllid),"TcpListen");
ty_int_3 tcplisten;
tcplisten = ty_int_3(procid);
procid = GetProcAddress(HMODULE (dllid),"TcpConnected");
ty_int_1 tcpconnected;
tcpconnected = ty_int_1(procid);
/* The actual call to the function contained in the dll */
int tcp = tcplisten(12563,10, 1);
/* The return val from the dll */
return tcpconnected(tcp);
} [/CPP]
bij de return.
heeft iemand een idee wat er fout is, of moet ik daarvoor een deel van de dll posten?