mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-18 09:42:40 +02:00
43 lines
956 B
ObjectPascal
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.
|