1{
2 /***************************************************************************
3                         Interfaces.pp  -  determines what interface to use
4                             -------------------
5
6                   Initial Revision  : Thu July 1st CST 1999
7
8
9 ******************** *******************************************************/
10
11 *****************************************************************************
12  This file is part of the Lazarus Component Library (LCL)
13
14  See the file COPYING.modifiedLGPL.txt, included in this distribution,
15  for details about the license.
16 *****************************************************************************
17}
18
19unit Interfaces;
20
21{$mode objfpc}{$H+}
22
23interface
24
25uses
26  {$IFnDEF DisableUTF8RTL}
27  LazUTF8,
28  {$ENDIF}
29  InterfaceBase;
30
31implementation
32
33uses
34  Win32Int, Forms;
35
36initialization
37  CreateWidgetset(TWin32WidgetSet);
38
39finalization
40  FreeWidgetSet;
41
42end.
43