aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/SurfaceGDI.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/SurfaceGDI.h')
-rw-r--r--win32/SurfaceGDI.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/win32/SurfaceGDI.h b/win32/SurfaceGDI.h
new file mode 100644
index 000000000..990b052fc
--- /dev/null
+++ b/win32/SurfaceGDI.h
@@ -0,0 +1,18 @@
+// Scintilla source code edit control
+/** @file SurfaceGDI.h
+ ** Definitions for drawing to GDI on Windows.
+ **/
+// Copyright 2025 by Neil Hodgson <neilh@scintilla.org>
+// The License.txt file describes the conditions under which this software may be distributed.
+
+#ifndef SURFACEGDI_H
+#define SURFACEGDI_H
+
+namespace Scintilla::Internal {
+
+std::shared_ptr<Font> FontGDI_Allocate(const FontParameters &fp);
+std::unique_ptr<Surface> SurfaceGDI_Allocate();
+
+}
+
+#endif