cdbgscr_ex.h

来自「一个Linux下的软猫驱动」· C头文件 代码 · 共 50 行

H
50
字号
/* * Copyright (c) 2003-2004 Linuxant inc. * Copyright (c) 2001-2003 Conexant Systems, Inc. * * NOTE: The use and distribution of this software is governed by the terms in * the file LICENSE, which is included in the package. You must read this and * agree to these terms before using or distributing this software. * *//* * c_dbgscr.h - header file for c implementation of SCR printing. */#ifndef _CDBGSCR_EX_H_#define _CDBGSCR_EX_H_#include "sysenv.h"#if (OS_TYPE == OS_LINUX)#include "linux_dbgscr.h"#include <stdarg.h>#endif#ifdef SCR#if ( COMP_ONE_OF(CMP_DJGPP | CMP_GCC) )extern __shimcall__ DWORD C_ScrFormat( IN PCHAR FmtString, ... )	__attribute__ ((format (printf, 1, 2)));#elseextern __shimcall__ DWORD C_ScrFormat( IN PCHAR FmtString, ... );#endif#else /* ! SCR */#if ( COMPILER == CMP_GCC )#define C_ScrFormat(FmtString, Args...)#else/* optimize it out */#define C_ScrFormat while(0) C_ScrFormat#endif#endif /* SCR */#endif /* _CDBGSCR_EX_H_ */

⌨️ 快捷键说明

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