shorthand.h

来自「Shorthand是一个强大的脚本语言」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef __shorthand_h
#define __shorthand_h
///////////////////////////////////////////////////////////////////////////////
// $Header: /shorthand/src/shorthand.h 4     8/28/02 6:27a Arm $
//-----------------------------------------------------------------------------
// Project: ShortHand interpreter
// Author: Andrei Remenchuk <andrei@remenchuk.com>
//-----------------------------------------------------------------------------
// except.h: ShortHand debug diagnostics
///////////////////////////////////////////////////////////////////////////////

#ifdef _DEBUG
#define TRACE(x) trace x
void trace(int level, const char* format, ...);
extern int trace_level;
#else
#define TRACE(x) 
#endif

#ifdef WIN32
#define THREADLOCAL __declspec(thread)
#else
#define THREADLOCAL
#endif



#endif // __shorthand_h

⌨️ 快捷键说明

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