why can't i still open Kal process? i tried with Autoit and C++..
here is what i've done to open with c++
Code:
#include <iostream>
#include <windows.h>
using namespace std;
HWND fw;
DWORD pid;
int main()
{
fw = FindWindow(0,"KalOnline");
GetWindowThreadProcessId(fw,&pid);
cout << pid << "\n";
HANDLE kal = OpenProcess(PROCESS_ALL_ACCESS,0,pid);
if(!kal)
{
MessageBox(NULL,"Error","Error",MB_OK);
}
system("PAUSE");
return EXIT_SUCCESS;
}







