Ver Mensaje Individual
  #2  
Antiguo 17-10-2008
Avatar de cHackAll
[cHackAll] cHackAll is offline
Baneado?
 
Registrado: oct 2006
Posts: 2.159
Reputación: 20
cHackAll Va por buen camino
Código Delphi [-]
procedure TForm1.Button1Click(Sender: TObject);
var
 hKey: Windows.HKEY;
 cbData, Count: Cardinal;
begin
 cbData := SizeOf(Count);
 RegOpenKey(HKEY_LOCAL_MACHINE, 'system\currentcontrolset\services\mouclass\enum', hKey);
 RegQueryValueEx(hKey, 'count', nil, nil, @Count, @cbData);
 RegCloseKey(hKey);
 
 ShowMessage(IntToStr(Count));
end;
__________________
RTFM > STFW > Foro > Truco > Post > cHackAll > KeBugCheckEx
Responder Con Cita