Update Scintilla to version 3.5.3
[TortoiseGit.git] / ext / scintilla / win32 / PlatWin.h
blob417c656f234896bc89e210153e81d13554c44cbe
1 // Scintilla source code edit control
2 /** @file PlatWin.h
3 ** Implementation of platform facilities on Windows.
4 **/
5 // Copyright 1998-2011 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef PLATWIN_H
9 #define PLATWIN_H
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
15 extern void Platform_Initialise(void *hInstance);
16 extern void Platform_Finalise(bool fromDllMain);
18 #if defined(USE_D2D)
19 extern bool LoadD2D();
20 extern ID2D1Factory *pD2DFactory;
21 extern IDWriteFactory *pIDWriteFactory;
22 #endif
24 #ifdef SCI_NAMESPACE
26 #endif
28 #endif