1{
2 /***************************************************************************
3                 Interfaces.pp  -  determines what interface to use
4
5 ***************************************************************************/
6
7 *****************************************************************************
8 *                                                                           *
9 *  This file is part of the Lazarus Component Library (LCL)                 *
10 *                                                                           *
11 *  See the file COPYING.modifiedLGPL.txt, included in this distribution,    *
12 *  for details about the copyright.                                         *
13 *                                                                           *
14 *  This program is distributed in the hope that it will be useful,          *
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                     *
17 *                                                                           *
18 *****************************************************************************
19}
20unit Interfaces;
21
22{$mode objfpc}{$H+}
23
24interface
25
26uses
27  InterfaceBase;
28
29implementation
30
31uses
32  MuiInt, Forms;
33
34initialization
35  CreateWidgetset(TMuiWidgetSet);
36
37finalization
38  FreeWidgetSet;
39
40end.
41