Created
August 31, 2012 07:46
-
-
Save ik5/3549959 to your computer and use it in GitHub Desktop.
old gtk2 binding to pascal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type | |
PGtkButton = ^TGtkButton; | |
TGtkButton = record | |
bin : TGtkBin; | |
event_window : PGdkWindow; | |
label_text : Pgchar; | |
activate_timeout : guint; | |
flag0 : word; | |
end; | |
function gtk_button_new:PGtkWidget; cdecl; external gtklib; | |
procedure gtk_button_set_label(button:PGtkButton; _label:Pgchar); cdecl; external gtklib; | |
function gtk_button_get_label(button:PGtkButton):Pgchar; cdecl; external gtklib; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment