lazarus/components/vlc/vlcgtk2.inc
mattias 5adfbf21bf added lclvcl
git-svn-id: trunk@39254 -
2012-11-07 13:25:06 +00:00

17 lines
376 B
PHP

{%MainUnit lclvlc.pp}
uses gtk2proc, gtk2extra, ctypes, gtk2;
Function GetXHandle(AWinControl : TWinControl) : culong;
var
Widget: PGtkWidget;
begin
Result:=0;
if (AWinControl=nil) or (not AWinControl.HandleAllocated) then exit;
Widget:={%H-}PGtkWidget(AWinControl.Handle);
if Widget^.window = nil then exit;
Result := gdk_window_xwindow(Widget^.window);
end;