?? comperrors.h
字號:
/*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) 1999 Intel Corporation. All Rights Reserved.
//
// RCS:
// $Source: CompErrors.h$
// $Revision: 00.00.05$
// Purpose:
// Contents:
// Authors:
// Sergey Oblomov
//
//M*/
#ifndef _COMPERRORS_H_
#define _COMPERRORS_H_
#define ATS_COMP_ERROR(Error,Func,ErrorExp,Message) \
{ \
IppiStatus res; \
trsWrite( ATS_CON | ATS_LST, "%s...", Message ); \
if( (res = Func) != ErrorExp ) \
{ \
trsWrite( ATS_CON | ATS_LST, \
"error: act %d exp %s\n", \
res, \
#ErrorExp ); \
Error++; \
} \
else trsWrite( ATS_CON | ATS_LST, "ok\n" ); \
}
#endif /* _COMPERRORS_H_ */
/* End of file. */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -