Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
keylogger source
my compiler (miracle c) don't have many headers. i had problems with opensources before - i couldnt compile them cause i didnt have some headers. where could i find those header (and of course all the other headers in the windows.h)?
Anarcho-Hippie wrote: post the source you have so we can take a look and tell you what you need.
Also you need to use the getasynckeystate function included in the windows.h header.
Check msdn, http://msdn.microsoft.com/
u might be interested in this VB6 module..
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer
Public Function GetCapslock() As Boolean
GetCapslock = CBool(GetKeyState(vbKeyCapital) And 1)
End Function
Public Function GetShift() As Boolean
GetShift = CBool(GetAsyncKeyState(vbKeyShift))