Ver Mensaje Individual
  #2  
Antiguo 08-03-2008
[basti] basti is offline
Miembro Premium
 
Registrado: ago 2004
Posts: 388
Reputación: 20
basti Va por buen camino
Código Delphi [-]
var
  memoria : Pointer;
Luego para hacer el cast:
Código Delphi [-]
type
  pInteger = ^Integer;

var
  p : Pointer;
  n : Integer;
begin
  n := pInteger(p)^;
end;
__________________
Saludos.
Responder Con Cita