Einzelnen Beitrag anzeigen

Benutzerbild von ste_ett
ste_ett

Registriert seit: 10. Sep 2004
Ort: Dülmen
464 Beiträge
 
Delphi 7 Professional
 
#11

Re: C++ DLL / Konvertierung der Header-Datei nach Delphi

  Alt 2. Jul 2007, 09:20
Code:
prInt8 = Char;
"unsigned char" ist eine vorzeichenbehaftete, ein Byte große, ganze Zahl.
-128..127

Bei Delphi ist das ein smallint.

prInt8 = Smallint;
Code:
prUInt8 *  pbData;
Dies ist ein Pointer auf eine Variable.

Delphi-Quellcode:
  prUInt8 = Byte;
  prPUInt8 = ^prUInt8;

...

pbData : prPUInt8;
Stefan
"Geht nicht!" ist keine Fehlerbeschreibung und "Hab ich schon versucht!" keine Antwort!

Hey, it compiles! Ship it!
  Mit Zitat antworten Zitat