Ver Mensaje Individual
  #4  
Antiguo 29-03-2022
Avatar de Neftali [Germán.Estévez]
Neftali [Germán.Estévez] Neftali [Germán.Estévez] is offline
[becario]
 
Registrado: jul 2004
Ubicación: Barcelona - Espańa
Posts: 18.286
Reputación: 10
Neftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en bruto
No soy especialista en C++.
Lo mueve al foro correspondiente a ver si alguien con más conocimientos te puede ayudar.

De todas formas un primer intento del que no te puedes fiar sería:

Código Delphi [-]
type
  PTcp = ^Tcp;
  PAPIDEVICE = ^APIDEVICE;
  PMELDEVICEDATA = ^MELDEVICEDATA;

  Tcp = record
    IPAddr: array [0..15] of Char;
    lPortNo: Integer;
    dummy: array [0..11] of Char;
  end;

  APIDEVICE = record
    ValueTcp: Tcp;
  end;

  MELDEVICEDATA = record
    dwDeviceType: Integer;
    uniDeviceInfo: APIDEVICE;
  end;
__________________
Germán Estévez => Web/Blog
Guía de estilo, Guía alternativa
Utiliza TAG's en tus mensajes.
Contactar con el Clubdelphi

P.D: Más tiempo dedicado a la pregunta=Mejores respuestas.

Última edición por Neftali [Germán.Estévez] fecha: 29-03-2022 a las 18:15:02.
Responder Con Cita