nspwarn.h
来自「利用intel dsplib 库函数进行特定2FSK信号(需传导频)解调」· C头文件 代码 · 共 47 行
H
47 行
/*M*
//
// INTEL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and may not be copied
// or disclosed except in accordance with the terms of that agreement.
// Copyright (c) 1994 Intel Corporation. All Rights Reserved.
//
// $Workfile: nspwarn.h $
// $Revision: 3 $
// $Modtime: 3/05/97 19:06 $
//
// Purpose:
//
*M*/
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __NSPWARN_H__
#define __NSPWARN_H__
#if !defined (_OWN_BLDPCS)
#if _MSC_VER >= 1000
/* nonstandard extension used : nameless struct/union */
#pragma warning(disable : 4201)
/* nonstandard extension used : bit field types other than int */
#pragma warning(disable : 4214)
/* unreferenced inline function has been removed */
#pragma warning(disable : 4514)
/* named type definition in parentheses */
#pragma warning(disable : 4115)
#endif /* _MSC_VER >= 1000 */
#endif /* (_OWN_BLDPCS) */
#endif /* __NSPWARN_H__ */
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?