?? zl5011xerrorstring.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 + -