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

📄 zl5011xerrorstring.h

📁 Zalink50114----TDMoIP芯片驱动源码
💻 H
字号:
/*******************************************************************************
*
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -