mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 11:52:37 +02:00
48 lines
1.2 KiB
ObjectPascal
48 lines
1.2 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}
|
|
|
|
interface
|
|
|
|
uses
|
|
InterfaceBase;
|
|
|
|
var
|
|
InterfaceObject : TInterfaceBase;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Win32Int;
|
|
|
|
initialization
|
|
|
|
InterfaceObject := TWin32Object.Create;
|
|
|
|
finalization
|
|
|
|
InterfaceObject.Free;
|
|
|
|
end.
|