lazarus/lcl/interfaces/win32/interfaces.pp
lazarus caec2bc4ad Keith: Fixed Win32 compilation problems
git-svn-id: trunk@1230 -
2002-02-09 01:48:08 +00:00

52 lines
1.3 KiB
ObjectPascal

{
/***************************************************************************
Interfaces.pp - determines what interface to use
-------------------
Initial Revision : Thu July 1st CST 1999
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
}
Unit interfaces;
{$MODE OBJFPC}
{$LONGSTRINGS ON}
Interface
Uses
InterfaceBase;
Var
InterfaceObject: TInterfaceBase;
Implementation
Uses
Win32Int, Forms;
Initialization
InterfaceObject := TWin32Object.Create;
Finalization
Application.Free;
Application := Nil;
InterfaceObject.Free;
InterfaceObject := Nil;
End.