How to translate the CC ++ program into Delphi (5)

zhaozj2021-02-17  49

1. Anatomy of a c header

Back to Contents

## to do 2. Conversion Basics

2.1. Naming The naming in converted header files should follow Borland's style as far as possible. This means, keep the original names, but make them more Delphi-like. How should the C names be translated into Delphi? The C-programmer usually uses upper case letters for type identifiers, eg mY_TYPE. in Delphi, a type identifier has a T-prefix followed by the name of the type in mixed (proper) case. underscores are not used. The Delphi-like translation of the C type identifier mY_TYPE is TMyType. In C older header files the pointer-type is named LPMY_TYPE. In translation to Delphi it should be PMyType to conform with Borland's style. Constants are usually named identically to the original name, including upper case letters and underscores. A few EXAMPLES:

CDelphi-Translationtypedef struct _IMAGE_FILE_HEADER {WORD Machine; WORD NumberOfSections; DWORD TimeDateStamp; DWORD PointerToSymbolTable; DWORD NumberOfSymbols; WORD SizeOfOptionalHeader; WORD Characteristics;} IMAGE_FILE_HEADER, * PIMAGE_FILE_HEADER; type PImageFileHeader = ^ TImageFileHeader; TImageFileHeader = packed record Machine: Word; NumberOfSections: Word ; TimeDateStamp: DWORD; PointerToSymbolTable: DWORD; NumberOfSymbols: DWORD; SizeOfOptionalHeader: Word; Characteristics: Word; end; #define LANG_NEUTRAL 0x00 # define LANG_AFRIKAANS 0x36 # define LANG_ALBANIAN 0x1C # define LANG_ARABIC 0x01 # define LANG_BASQUE 0x2D # define LANG_BELARUSIAN 0x23 # define LANG_BULGARIAN 0x02 # define LANG_CATALAN 0x03 # define LANG_CHINESE 0x04 CONST LANG_NEUTRAL = $ 00; LANG_AFRIKAANS = $ 36; LANG_ALBANIAN = $ 1C; LANG_ARABIC = $ 01; LANG_BASQUE = $ 2D; LANG_BELARUSIAN = $ 23; LANG_BULGARIAN = $ 02; LANG_CATALAN = $ 03; LANG_CHINESE = $ 04; Back to Contents

2.2. Unit Dependencies

C and C USE #include to include header files in another header file or a source file. Delphi refers to units (in the buys clause) instead of header files. For example

D3D.H includes D3DTYPES.H, D3DCAPS.H D3DTYPES.H includes DDRAW.H One unit contains one translation of a header file, so incorporation of D3DTYPES.H and D3DCAPS.H is required when translating D3D.H. Thus the translation of D3D.H (D3D.PAS) needs D3DTYPES.PAS and D3DCAPS.PAS in uses. in Windows.pas Borland has already done a lot of work for us. Borland's windows unit contains most of the basic Windows datatypes, so any translated unit needing Windows datatypes needs the Windows unit in its uses clause Note:. in Delphi 1.0, substitute WinProcs.pas and WinTypes.pas for Windows.pas, since these two units include for Delphi 16-bit what Delphi 32-bit defines in Windows.pas . in Delphi 2 these two files are also aliased to Windows.pas in Delphi 32-bit versions for backward compatibility. Some header files contain source which is not directly translatable into Pascal, but the header file's impact on compilation must be incorporated into the translated Code. for esample, pshpack ?h contains comp Iler Directives That Are Not Directly Translatable To Delphi; pshpack4.h Directs The Compiler To Use 4-byte Packing. More about this latern.back to contents

2.3. #Defines as constants C and C USE #defines in Several Ways. In a c header file #define can be used

for declaring a constant for declaring a symbol for conditional compilation for macros This chapter describes the translation of #define into Delphi constants The format for declaring constants in C is:. #define NameOfConstant Value For example: #define TIME_ZONE_ID_UNKNOWN 0

#define Time_ZONE_ID_STANDARD 1

#define time_zone_id_daylight 2 The Translation in Delphi IS: Const

Time_ZONE_ID_UNKNOWN = 0;

Time_ZONE_ID_STANDARD = 1;

Time_ZONE_ID_DAYLIGHT = 2; Back to Contents

2.3.1. Hexadecimal Values ​​C Uses The Prefix 0x To Specify A Hexadecimal Value. For Example, The C Declaration #define my_constant 0xff Translates to Delphi as consts

MY_CONSTANT = $ FF;

Back to Contents

3. Data Types 3.1. Basic Data Types Here Is A List of C Data Types and The Equivalents in Delphi:

CDELPHIUNSIGNED LONGDWORD (longint) Unsigned Shortwordintintegerunsigned charbyte, char (Depending On Usage)

Back to Contents

.. 3.2 Windows API Common Types The Windows API defines some common types for API usage It is recommended that the same names be used in translations as far as possible Windows.pas declares most of these types, some of which are listed below.:

API Type declarationType used in Delphi Translation Type SpecificationULONGULongDWordPULONGPULong ^ DWordUSHORTUShortSmallIntPUSHORTPUShort ^ SmallIntUCHARUCharBytePUCHARPUChar ^ ByteDWORDDWordDWordPDWORD, LPDWORDPDWord ^ DWord BOOLBoolBoolPBOOL, LPBOOLPBool ^ BoolBYTEByteBytePBYTE, LPBYTEPByte ^ ByteWORDWordWordPWORD, LPWORDPword ^ WordINTIntegerIntegerPINT, LPINTPInteger ^ IntegerLPVOIDPointerUntyped PointerUINTUIntIntegerPUINT, LPUINTPUInt ^ Integer WCHARWCharWideChar PWCHAR, LPWCHAR, PCWCH, LPCWCH, NWPSTR, PWChar ^ WideCharPWSTR, LPWSTRLPWStr ^ WideCharPCWSTR, LPCWSTRLPCWStr ^ WideCharPCH, LPCHPChar ^ CharPSTR, LPSTRLPStr ^ CharPCSTR, LPCSTRLPCStr ^ Char HANDLETHandleDWordPHANDLE, LPHANDLEPHandle ^ DWord

Back to Contents

3.3 Arrays - Two Methods Method 1:. In C the first index of an array (or vector) is 0 and the declaration specifies the number of elements (not the last index), eg DWORD MyType [4] Delphi declares arrays as the range of Elements, So The Same Declaration Would Bemytype = Array [0..3] of DWord; Method 2: Alternative, The Number of Elements May Be Specified by a constant, EG #define numberownloads 5 // ...

Typedef struct_myrec {

DWORD MyArray [NumberOfelements]]

} MyRec, * PMYREC THE Same Declaration in Delphi is const

Numberofelements = 5

// ...

Type

TMYARRAY = Record

MyArray: array [0..numberofelements-1] of dword;

End; Remember, The Range of the Array IS 0..NumberofElements-1, But not0..numberofelements.

Back to Contents

转载请注明原文地址:https://www.9cbs.com/read-30425.html

New Post(0)