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

📄 sw_types.h

📁 MTK手机平台下载工具FLASHTOOL驱动源码
💻 H
字号:
/*******************************************************************************
 *  Copyright Statement:
 *  --------------------
 *  This software is protected by Copyright and the information contained
 *  herein is confidential. The software may not be copied and the information
 *  contained herein may not be used or disclosed except with the written
 *  permission of MediaTek Inc. (C) 2003
 *
 *******************************************************************************/

/*******************************************************************************
 * Filename:
 * ---------
 *   sw_types.h
 *
 * Project:
 * --------
 *   Download Agent
 *
 * Description:
 * ------------
 *   Common type and structure definition
 *
 * Author:
 * -------
 *   Amos Hsu
 *
 *------------------------------------------------------------------------------
 * $Revision:   1.1  $
 * $Modtime:   Nov 06 2003 15:32:26  $
 * $Log:   //mtkvs01/vmdata/flash_tool/archives/DA/INC/SW_TYPES.H-arc  $
 * 
 *    Rev 1.1   Nov 12 2003 14:14:44   mtk00539
 * Add SOC feature
 * Resolution for 35: [BootRom v2.1.1005][New] Add SOC feature.
 *
 *******************************************************************************/

#ifndef SW_TYPES_H
#define SW_TYPES_H


/*
 * general definitions
 */

typedef signed char    int8;
typedef signed short   int16;
typedef signed long    int32;
typedef signed int     intx;
typedef unsigned char  uint8;
typedef unsigned short uint16;
typedef unsigned long  uint32;
typedef unsigned int   uintx;
#ifndef __cplusplus
typedef unsigned char  bool;
#endif

/*
 * Definitions for BOOLEAN
 */

#define FALSE          0
#define TRUE           1

/*
 * Definitions for NULL
 */
#ifndef NULL
#define NULL           0
#endif


#endif  /* SW_TYPES_H */


⌨️ 快捷键说明

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