zl5011xerrorstring.h
来自「Zalink50114----TDMoIP芯片驱动源码」· C头文件 代码 · 共 55 行
H
55 行
/*******************************************************************************
*
* File name: zl5011xErrorString.h
*
* Version: 6
*
* Author: MRC
*
* Date created: 27/02/2002
*
* Copyright 2002, 2003, 2004, 2005, Zarlink Semiconductor Limited.
* All rights reserved.
*
* Module Description:
*
* This is the header file for the accessing the error code strings.
* The strings are held in the seperate header file zl5011xErrtext.h
*
* Revision History:
*
* Rev: Date: Author: Comments:
* 1 27/02/2002 MRC Creation
* 2 22/04/2002 MRC Update
* 3 19/12/2002 MRC Tidied up
* 4 02/07/2003 JFE Changed name of include file
* 5 01/12/2003 APL Added macro to avoid multiple includes
* 6 01/01/2005 APL Error string array now const
*
*******************************************************************************/
#ifndef _ZL5011X_ERROR_STRING_H
#define _ZL5011X_ERROR_STRING_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
zlStatusE code;
char *text;
} zlErrorStringsS;
const zlErrorStringsS zlError[]=
{
#include "zl5011xErrtext.h"
};
#ifdef __cplusplus
}
#endif
#endif /* _ZL5011X_ERROR_STRING_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?