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 unit Interfaces;
19 
20 {$mode objfpc}{$H+}
21 
22 interface
23 
24 {$IFDEF UNIX}{$IFNDEF DisableCWString}uses cwstring;{$ENDIF}{$ENDIF}
25 
26 implementation
27 
28 uses
29   {$IFNDEF EnableLibOverlay}
30   gtk2DisableLibOverlay,
31   {$ENDIF}
32   Gtk2Int, Forms;
33 
34 initialization
35   CreateWidgetset(TGtk2WidgetSet);
36 
37 finalization
38   FreeWidgetSet;
39 
40 end.
41