2013-08-28 00:44:27 +00:00
|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file PlatWin.h
|
|
|
|
** Implementation of platform facilities on Windows.
|
|
|
|
**/
|
|
|
|
// Copyright 1998-2011 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
#ifndef PLATWIN_H
|
|
|
|
#define PLATWIN_H
|
|
|
|
|
|
|
|
#ifdef SCI_NAMESPACE
|
|
|
|
namespace Scintilla {
|
|
|
|
#endif
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
extern void Platform_Initialise(void *hInstance);
|
2015-06-07 21:19:26 +00:00
|
|
|
extern void Platform_Finalise(bool fromDllMain);
|
2013-08-28 00:44:27 +00:00
|
|
|
|
|
|
|
#if defined(USE_D2D)
|
|
|
|
extern bool LoadD2D();
|
|
|
|
extern ID2D1Factory *pD2DFactory;
|
|
|
|
extern IDWriteFactory *pIDWriteFactory;
|
|
|
|
#endif
|
2015-06-07 21:19:26 +00:00
|
|
|
|
|
|
|
#ifdef SCI_NAMESPACE
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|