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

📄 pragma.h

📁 能够通过输入IP地址扫描端口
💻 H
字号:
/*
	pragma.h
	Elimina i warning scassacazzi del VC++ 4.2 (da includere solo nei .c/.cpp).
	Luca Piergentili, 13/08/96
	lpiergentili@yahoo.com
	http://www.geocities.com/lpiergentili/
*/
#ifndef _PRAGMA_H
#define _PRAGMA_H 1

#if defined(_MSC_VER)
  #ifdef _DEBUG
    #pragma message("\t\t\t"__FILE__" included: warnings disabled")

    #pragma warning(disable:4100) /* unreferenced formal parameter */
    #pragma warning(disable:4102) /* unreferenced label */
    #pragma warning(disable:4115) /* named type definition in parentheses */
    #pragma warning(disable:4127) /* conditional expression is constant */
    #pragma warning(disable:4131) /* uses old-style declarator */

    #pragma warning(disable:4305) /* abstract declarator : truncation from '...' to '...' */

    #pragma warning(disable:4201) /* nonstandard extension used : nameless struct/union */
    #pragma warning(disable:4206) /* nonstandard extension used : translation unit is empty */
    #pragma warning(disable:4214) /* nonstandard extension used : bit field types other than int */
    #pragma warning(disable:4244) /* conversion from 'int' to 'unsigned short', possible loss of data */

    #pragma warning(disable:4505) /* unreferenced local function has been removed */
    #pragma warning(disable:4514) /* unreferenced inline function has been removed */

  #endif
#endif

#endif /* _PRAGMA_H */

⌨️ 快捷键说明

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