fpc/utils/h2pas
2022-05-24 14:01:59 +03:00
..
converu.pas
fpmake.pp Disable h2pas utils package for wasm32 as this CPU does not support goto 2022-01-24 18:25:51 +00:00
h2pas.pas * Prepend T when writing pointer types and PrependTypes is set 2021-12-30 18:46:25 +01:00
h2pas.y * Prepend T when writing pointer types and PrependTypes is set 2021-12-30 18:46:25 +01:00
h2paschk.pas Use %X instead of %x for C hexadecimal constants as Free Pascal hexstr uses uppercase characters A to F for values 10 to 15 2019-05-06 10:17:10 +00:00
h2paspp.pas
h2plexlib.pas * make yysleng a longint 2015-01-06 16:01:33 +00:00
h2poptions.pas * patch by "rs" to support lines longer than 255 chars in h2pas, resolves #15056 2015-01-06 15:16:18 +00:00
h2pyacclib.pas * patch by "rs" to support lines longer than 255 chars in h2pas, resolves #15056 2015-01-06 15:16:18 +00:00
Makefile * regenerate makefiles with latest fpcmake 2022-05-24 14:01:59 +03:00
Makefile.fpc * trunk to 3.3.1 2018-08-18 15:47:44 +00:00
Makefile.fpc.fpcmake * Switched utils to fpmake building 2013-05-26 19:05:11 +00:00
README.txt
scan.l * patch by "rs" to support lines longer than 255 chars in h2pas, resolves #15056 2015-01-06 15:16:18 +00:00
scan.pas * patch by "rs" to support lines longer than 255 chars in h2pas, resolves #15056 2015-01-06 15:16:18 +00:00
testit.h * convert array declarations without size into pointers (as even the comment in the code says), resolves #10156 2010-08-20 08:22:14 +00:00
yylex.cod * set svn mime type=text/plain and eol style=native to the *.cod files in the h2pas directory 2015-04-12 14:42:06 +00:00
yyparse.cod

This is the h2pas program, a utility to convert C header files to pascal
units. It is part of the Free Pascal distribution.

COMPILING

To compile the program, a simple
 'make' 
should be sufficient; you need GNU make for this. When using TP, a simple
  tpc h2pas.pas
should also be possible. 

USAGE

h2pas [-p] [-t] [-o outputfilename] [-l libname] [-u unitname] filename

-t : Prepend 'T' to all type names in typedef definitions. This may help
     when the C header use uppercase types and lowercase variables of the
     same name.

-p : Use 'P' instead of ^ as a pointer symbol;
     This will convert 
        ^char to pchar
        ^longint to plongint 
     etc. It will also define a PSOMETYPE pointer for each SOMETYPE struct type 
     definition in the header file.
     Thus 
     typedef struct somestruct {
       ...
     }
     Will be converted to
     somestruct = record
       ...
     end;
     PSomestruct = ^Somestruct;
     If the -t options is used, the -p option takes care of that too.

-l : In the implementation part, the external functions will be
     written with 'external libname;' behind it.
     If you omit this option, all functions will be declared as 
     cdecl; external; 

-o : specify the outputname. By default, the inputname is used, with
     extension '.pp'.

-u : Specify the unit name. By default, the outputname is used, without
     extension.

-v : Replaces pointer types in parameter list by call by reference
     parameters:
        void p(int *i)  =>   procedure p(var i : longint);

Enjoy !