gsourceclosure.inc 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // included by glib2.pas
  2. {$IFDEF read_forward_definitions}
  3. {$ENDIF read_forward_definitions}
  4. //------------------------------------------------------------------------------
  5. {$IFDEF read_interface_types}
  6. {$ENDIF read_interface_types}
  7. //------------------------------------------------------------------------------
  8. {$IFDEF read_interface_rest}
  9. procedure g_source_set_closure(source:PGSource; closure:PGClosure); cdecl; external gliblib;
  10. function g_io_channel_get_type:GType; cdecl; external gliblib;
  11. function g_io_condition_get_type:GType; cdecl; external gliblib;
  12. function G_TYPE_IO_CHANNEL : GType;
  13. function G_TYPE_IO_CONDITION : GType;
  14. {$ENDIF read_interface_rest}
  15. //------------------------------------------------------------------------------
  16. {$IFDEF read_implementation}
  17. function G_TYPE_IO_CHANNEL : GType;
  18. begin
  19. G_TYPE_IO_CHANNEL:=g_io_channel_get_type;
  20. end;
  21. function G_TYPE_IO_CONDITION : GType;
  22. begin
  23. G_TYPE_IO_CONDITION:=g_io_condition_get_type;
  24. end;
  25. {$ENDIF read_implementation}
  26. // included by glib2.pas