Difference between revisions of "H2Pas"

From Lazarus wiki
Jump to navigationJump to search
m (adding a link for h2paswizard lazarus plugin)
Line 14: Line 14:
 
==See also==
 
==See also==
  
* [[Creating bindings for C libraries]].
+
*[[h2paswizard]]
 +
*[[Creating bindings for C libraries]].
  
  
 
[[Category:FPC]]
 
[[Category:FPC]]
 
[[Category:Utilities]]
 
[[Category:Utilities]]

Revision as of 14:42, 28 January 2016

English (en) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

Adapted from FreePascal User's Manual:

h2pas attempts to convert a C header file to a pascal unit. It can handle most C constructs that one finds in a C header file, and attempts to translate them to their Pascal counterparts. See the documentation for a full description of what the translator can handle. The unit with Pascal declarations can then be used to access code written in C.

The output of the h2pas program is written to a file with the same name as the C header file that was used as input, but with the extension .pp. The output file that h2pas creates can be customized in a number of ways by means of many options.

There is a GUI for h2pas called h2paswizard.

See also