From 2f542786fd95e7bbce6c689934cb4988aa3fa1df Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 20 Mar 2025 16:46:11 +1100 Subject: Move SurfaceGDI, SurfaceD2D, ListBox, and associated code out of PlatWin.cxx to new files SurfaceGDI.cxx, SurfaceD2D.cxx, and ListBox.cxx + associated headers. --- win32/ListBox.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 win32/ListBox.h (limited to 'win32/ListBox.h') diff --git a/win32/ListBox.h b/win32/ListBox.h new file mode 100644 index 000000000..cb3a17479 --- /dev/null +++ b/win32/ListBox.h @@ -0,0 +1,18 @@ +// Scintilla source code edit control +/** @file ListBox.h + ** Definitions for list box on Windows. + **/ +// Copyright 2025 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef LISTBOX_H +#define LISTBOX_H + +namespace Scintilla::Internal { + +bool ListBoxX_Register() noexcept; +void ListBoxX_Unregister() noexcept; + +} + +#endif -- cgit v1.2.3