aba851645c
* codegen/defs-parse.pl : struct generation. Added float and double type mapping entries. * codegen/hardcoded.defs : GdkGeometry definition. define-struct doesn't appear to be supported in the current defs files. This file will be used for manual definition of unsupported defs. * codegen/makefile : add hardcoded.defs. svn path=/trunk/gtk-sharp/; revision=1256
18 lines
394 B
Text
18 lines
394 B
Text
(define-struct Geometry
|
|
(in-module "Gdk")
|
|
(c-name "GdkGeometry")
|
|
(fields
|
|
'("gint" "min_width")
|
|
'("gint" "max_width")
|
|
'("gint" "min_height")
|
|
'("gint" "max_height")
|
|
'("gint" "base_width")
|
|
'("gint" "base_height")
|
|
'("gint" "width_inc")
|
|
'("gint" "height_inc")
|
|
'("gdouble" "min_aspect")
|
|
'("gdouble" "max_aspect")
|
|
'("GdkGravity" "win_gravity")
|
|
)
|
|
)
|
|
|