summaryrefslogtreecommitdiff
path: root/gfx/gdi/gfxinterface.pas
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/gdi/gfxinterface.pas')
-rw-r--r--gfx/gdi/gfxinterface.pas39
1 files changed, 39 insertions, 0 deletions
diff --git a/gfx/gdi/gfxinterface.pas b/gfx/gdi/gfxinterface.pas
new file mode 100644
index 00000000..976160b7
--- /dev/null
+++ b/gfx/gdi/gfxinterface.pas
@@ -0,0 +1,39 @@
+{
+ fpGUI - Free Pascal GUI Library
+
+ GFXInterface - Default target selection unit for Windows GDI target
+
+ Copyright (C) 2000 - 2006 See the file AUTHORS, included in this
+ distribution, for details of the copyright.
+
+ See the file COPYING.modifiedLGPL, included in this distribution,
+ for details about redistributing fpGUI.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+}
+unit GFXInterface;
+
+interface
+
+uses GFX_GDI;
+
+type
+
+ TDefFont = TGDIFont;
+
+ TDefCanvas = TGDICanvas;
+
+ TDefImage = TGDIImage;
+
+ TDefScreen = TGDIScreen;
+
+ TDefApplication = TGDIApplication;
+
+ TDefWindow = TGDIWindow;
+
+implementation
+
+end.
+