cedefs.h

来自「一个完整的C语言编译器」· C头文件 代码 · 共 43 行

H
43
字号
////////////////////////////////////////////////////////////////////////////
//	File:		cedefs.h
//	Version:	1.0.0.0
//	Created:	21-Feb-1999
//
//	Author:		Stcherbatchenko Andrei
//	E-mail:		windfall@gmx.de
//
//	Global definitions for Crystal Edit - syntax coloring text editor.
//
//	You are free to use or modify this code to the following restrictions:
//	- Acknowledge me somewhere in your about box, simple "Parts of code by.."
//	will be enough. If you can't (or don't want to), contact me personally.
//	- LEAVE THIS HEADER INTACT
////////////////////////////////////////////////////////////////////////////

#ifndef CEDEFS_H__INCLUDED
#define CEDEFS_H__INCLUDED

#if defined(CE_DLL_BUILD) && defined(CE_FROM_DLL)
#error Define CE_DLL_BUILD or CE_FROM_DLL, but not both
#endif

#ifndef CRYSEDIT_CLASS_DECL
	#if defined(CE_DLL_BUILD)
		#define CRYSEDIT_CLASS_DECL		__declspec(dllexport)
	#elif defined(CE_FROM_DLL)
		#define CRYSEDIT_CLASS_DECL		__declspec(dllimport)
	#else
		#define CRYSEDIT_CLASS_DECL
	#endif
#endif

#ifndef CE_INLINE
	#if defined(CE_DLL_BUILD) || defined(CE_FROM_DLL)
		#define CE_INLINE
	#else
		#define CE_INLINE inline
	#endif
#endif

#endif

⌨️ 快捷键说明

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