asixdef.h

来自「基于东南大学开发的SEP3203的ARM7中的所有驱动」· C头文件 代码 · 共 60 行

H
60
字号
/*************************************************************************
 *
 *  Copyright (C) Asic Center. 2001
 *  All Rights Reserved
 *
 *  Filename : stddef.h
 *  Function : Definitions for common types, and NULL.
 *			   It includes 3 parts : Standard C types, PPSM types, Windows types.
 *			   Note: if you want to use Itron types, please include Itron.h by yourself.
 *  Revision :
 *          2001/10/16  Pessia      Create this file
 *          2002/3/13    Pessia      Add HOT_RESET_DEBUG_CODE_ENABLE
 ************************************************************************/
 
#ifndef ASIXDEF_H
#define ASIXDEF_H

//#ifndef STDDEF_H
#include "stddef.h"
//#endif

//#include "sys\wintype.h"
#include  "wintype.h"      //gfd
/* Extended Part of Definition */
#ifndef _STATUS_TYPE_
#define _STATUS_TYPE_
typedef short		STATUS;
#endif

#ifndef _ID_TYPE_
#define _ID_TYPE_
typedef int			ID;
#endif

#ifndef _RGB_TYPE_
#define _RGB_TYPE_
typedef unsigned long	RGB;
#endif

#ifndef PUBLIC
#define PUBLIC
#endif

#ifndef PRIVATE
#define PRIVATE 	static 
#endif

#ifndef EXTERN
#define EXTERN 		extern 
#endif

#ifndef STATIC
#define STATIC 		static 
#endif

/* Hot-Reset Debug Code Enable */
#define HOT_RESET_DEBUG_CODE_ENABLE  1

#endif  /* ASIXDEF_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?