01.
如何将C/C++程序转译成Delphi(十三)7. LinkingThere are two ways to link a DLL and import a function. Static linking is very easy and the recommended way if the DLL is certain to be available on the client's machine. If the DLL is optio...查看完整版>>
如何将C/C++程序转译成Delphi(十三)
02.
如何将C/C++程序转译成Delphi(十五)8. The Jedi Common Support Unit unit JediUtil;{==========================================================}{ Jedi Common Support Unit }{=================================...查看完整版>>
如何将C/C++程序转译成Delphi(十五)
03.
如何将C/C++程序转译成Delphi(十四)7.2. Dynamic LinkingDynamic Linking is used to link the DLL at runtime.Handling Static and Dynamic Linking in the Jedi EnvironmentBecause both static and dynamic linking have their strengths, we must ...查看完整版>>
如何将C/C++程序转译成Delphi(十四)
04.
如何将C/C++程序转译成Delphi(十二)5. Conditionals###ToDo -- 6. Functions6.1. BasicsLet's use the following C-declaration as an example of declaring a function:WINADVAPIBOOLWINAPIControlService( SC_HANDLE hService, DWOR...查看完整版>>
如何将C/C++程序转译成Delphi(十二)
05.
如何将C/C++程序转译成Delphi(十一)4. MacrosIn C it's possible to define macros. Macros are not available in Delphi, so functions must be used to translate C-macros. In most cases it's easier to translate a macro based on the informati...查看完整版>>
如何将C/C++程序转译成Delphi(十一)
06.
如何将C/C++程序转译成Delphi(十)3.6.3. Packed Records (Alignment)If a record is packed (aligned) then the starting byte of a field (and consequently also of the record) is aligned with the first byte of a word (16-bit or 2-byte alig...查看完整版>>
如何将C/C++程序转译成Delphi(十)
07.
如何将C/C++程序转译成Delphi(九)Case Integer of starts the variant part of the record. Each variant is identified by an ordinal value. This value has no meaning when the type is being used, but is required for declaration.Please not...查看完整版>>
如何将C/C++程序转译成Delphi(九)
08.
如何将C/C++程序转译成Delphi(八)3.6. Structures, Records3.6.1. Simple StructuresC structures are similar to records in Delphi. Structures are usually defined with the typedef keyword, but it's also possible to do it with #define.The...查看完整版>>
如何将C/C++程序转译成Delphi(八)
09.
如何将C/C++程序转译成Delphi(七)Here is a real-world example from the winnt.h, which is not possible to translate to a native enumerated type://// Start Type//#define SERVICE_BOOT_START 0x00000000#define SERVICE_SYSTEM_S...查看完整版>>
如何将C/C++程序转译成Delphi(七)
10.
如何将C/C++程序转译成Delphi(六)3.4. StringsIn C, as in Delphi, a string is an array of char types. Often, a string declaration is used in combination with a constant declaration specifying the maximum string length, as the followin...查看完整版>>
如何将C/C++程序转译成Delphi(六)
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。