lazarus-ccr/lclbindings/lclexports/stdctrlsexports.pas
sekelsenmat a44a9bb9b4 Added TLabel.Create to c bindings.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@341 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-02-03 16:01:04 +00:00

49 lines
799 B
ObjectPascal

{
stdctrlsexports.pas
Exports the functionality from the StdCtrls LCL unit
This file is part of the LCL Exports library.
LICENSE: The same modifyed LGPL as the Free Pascal Runtime Library
and the Lazarus Component Library
Copyright (C) 2008 Felipe Monteiro de Carvalho
}
unit stdctrlsexports;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
StdCtrls;
{ TButton }
function TButton_Create(TheOwner: TComponent): TButton; cdecl;
{ TLabel }
function TLabel_Create(TheOwner: TComponent): TLabel; cdecl;
implementation
{ TButton }
function TButton_Create(TheOwner: TComponent): TButton; cdecl;
begin
Result := TButton.Create(TheOwner);
end;
{ TLabel }
function TLabel_Create(TheOwner: TComponent): TLabel; cdecl;
begin
Result := TLabel.Create(TheOwner);
end;
end.