⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sciwrap.cpp

📁 C语言编程中算法数据结构中的树行代码
💻 CPP
字号:
/******************************************************************************
*
*
* Notepad2
*
* SciWrap.cpp
*   C-Wrapper around Scintilla C++ functions
*
* See Readme.txt for more information about this source code.
* Please send me your comments to this work.
*
* See License.txt for details about distribution and modification.
*
*                                              (c) Florian Balmer 1996-2008
*                                                  florian.balmer@gmail.com
*                                               http://www.flos-freeware.ch
*
*
******************************************************************************/
#include <windows.h>
#define PLAT_WIN 1
#include "scintilla.h"


bool Scintilla_RegisterClasses(void *hInstance);
bool Scintilla_ReleaseResources();


extern "C" int SciWrap_RegisterClasses(HINSTANCE hInstance) {
  return (int)Scintilla_RegisterClasses(hInstance);
}


extern "C" int SciWrap_ReleaseResources() {
  return (int)Scintilla_ReleaseResources();
}


// End of SciWrap.cpp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -