git-svn-id: trunk@15642 -
@@ -1145,10 +1145,7 @@ program h2pas;
if is_procvar then
begin
if not no_pop then
- begin
- write(outfile,';cdecl');
- no_pop:=true;
- end;
+ write(outfile,';cdecl');
is_procvar:=false;
end;
writeln(outfile,';');
@@ -1141,10 +1141,7 @@ program h2pas;
@@ -88,3 +88,9 @@ void gdk_gc_set_dashes (GdkGC *gc,
gint dash_offset,
gint8 dash_list[],
gint n);
+
+typedef struct FnTable {
+ int (*Fn1)( void );
+ int (*Fn2)( void );
+ int (*Fn3)( void );
+} FnTable;