📄 typedef.h
字号:
/*
*******************************************************************************
* The real-time kernel "rtCell" *
* Copyright 2005 taowentao, allrights reserved. *
* File : TypeDef.h *
* By : taowentao 2004-11-30 *
* 2005-08-05 *
*******************************************************************************
*/
#if !defined(TYPEDEF_H)
#define TYPEDEF_H
#if !defined(CONFIG_H)
#include "giCell\Engine\Config.h"
#endif
/*
*******************************************************************************
* TYPE DEFINE , *
* THIS MAKES DATA TYPE INDEPENDENT WITH THE COMPILERS *
*******************************************************************************
*/
/*
*******************************************************************************
* micro-kernel type define *
* THIS MAKES DATA TYPE INDEPENDENT WITH THE COMPILERS *
*******************************************************************************
*/
/******************************************************************************/
/* To port to another platform, you must realize the following basic types. */
/******************************************************************************/
#ifdef MC_CODE16
#include "giCell\Engine\Type16.h"
#else
#include "giCell\Engine\Type32.h"
#endif
/******************************************************************************/
/* To port to another platform, you must realize the basic types above. */
/******************************************************************************/
/*
*******************************************************************************
* *
*******************************************************************************
*/
#endif /* end of TypeDef.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -