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

📄 cdbgscr_ex.h

📁 一个Linux下的软猫驱动
💻 H
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -