Ver Mensaje Individual
  #2  
Antiguo 20-02-2007
Avatar de seoane
[seoane] seoane is offline
Miembro Premium
 
Registrado: feb 2004
Ubicación: A Coruña, España
Posts: 3.717
Reputación: 26
seoane Va por buen camino
Prueba con algo como esto:
Código Delphi [-]
function is_x86: Boolean;
begin
  Result:= AnsiSameText(GetEnvironmentVariable('PROCESSOR_ARCHITECTURE'),'x86');
end;

// Por ejemplo
if is_x86 then
  ShowMessage('32-bit')
else
  ShowMessage('64-bit');
Responder Con Cita