nope but i find it out by myself... i runned a 64bit client and tried to load a 32bit plugin..
i installed the 32bit client and now it runns...
i just have a problem with a timer at disabling the plugin.
i tried something like that
Code:
DWORD WINAPI Timer(LPVOID lpParam) {
char* channeldesc;
int x = 0;
while ( x != 11 && endthread == 0)
{
x++;
if (x == 10 && endthread == 0)
{
"do something"
x = 0;
}
if ( endthread == 0 )
{
Sleep(1000);
}
}
return 0;
}
and start the new thread with
Code:
CreateThread(0, NULL, Timer, (LPVOID)"Timer", NULL, NULL);
and try to close it at the shutdown function with
Code:
TerminateThread(Timer,NULL);
but this dont work fine... it closing the complete client with an acess violation error...
anyone have an idea how to solve it ?
ps: where do u have the code brakets ? ^^ in the full reply view ? ahh i got it xD