lazarus/lcl/interfaces/gtk3/interfaces.pp
2013-06-23 10:35:00 +00:00

43 lines
956 B
ObjectPascal

{
/***************************************************************************
Interfaces.pp - determines what interface to use
-------------------
Initial Revision : Thu July 1st CST 1999
***************************************************************************/
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit interfaces;
{$mode objfpc}
{$H+}
interface
uses
{$IFDEF UNIX}{$IFNDEF DisableCWString}cwstring,{$ENDIF}{$ENDIF}
InterfaceBase;
implementation
uses
gtk3int, Forms;
initialization
CreateWidgetset(TGtk3WidgetSet);
finalization
FreeWidgetset;
end.