Ver Mensaje Individual
  #2  
Antiguo 20-04-2012
Avatar de escafandra
[escafandra] escafandra is offline
Miembro Premium
 
Registrado: nov 2007
Posts: 2.197
Reputación: 20
escafandra Tiene un aura espectacularescafandra Tiene un aura espectacular
Trata de esta manera:

Declararla:
Código Delphi [-]
TBII_UR_Get_Name = function(const UR:PChar; name: PChar):integer; stdcall;

Para llamarla:
Código Delphi [-]
var
name: array[1..16] of char;
begin
......
TBII_UR_Get_Name(Usr, @name[0]);

Saludos.
Responder Con Cita