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

📄 mk_defs.h

📁 samsung 9908DVD源代码,
💻 H
字号:
/**********************************************************************************
 * mk_defs.h
 * coded by hspark@ce.cnu.ac.kr
 * date : 2001/06/23
 **********************************************************************************/

#ifndef __MK_DEFS_H__
#define __MK_DEFS_H__

/*********************************************
 *   Data types
 *********************************************/

#ifndef __CHAR
#define __CHAR
typedef char			CHAR;
#endif

#ifndef __UCHAR
#define __UCHAR
typedef	unsigned char	UCHAR;
#endif

#ifndef __SHORT
#define __SHORT
typedef short			SHORT;
#endif

#ifndef	__USHORT
#define __USHORT
typedef	unsigned short	USHORT;
#endif

#ifndef __INT
#define __INT
typedef int				INT;
#endif

#ifndef __UINT
#define __UINT
typedef unsigned int	UINT;
#endif

#ifndef __UNSIGNED
#define __UNSIGNED
typedef unsigned long	UNSIGNED;
#endif

#ifndef __LONG
#define __LONG
typedef long			LONG;
#endif

#ifndef __ULONG
#define __ULONG
typedef unsigned long	ULONG;
#endif

#ifndef __VOID
#define __VOID
typedef void			VOID;
#endif

#ifndef __OPTION
#define __OPTION
typedef	unsigned char	OPTION;
#endif

#ifndef __STATUS
#define __STATUS
typedef int				STATUS;
#endif

#ifndef __BOOLEAN
#define __BOOLEAN
typedef int				BOOLEAN;
#endif

#ifndef TRUE
#define TRUE			1
#endif

#ifndef FALSE
#define FALSE			0
#endif

#ifndef MK_NULL
#define MK_NULL (void *)0 
#endif

#define	MK_NO_ERROR				0
#define MK_ERROR				-1
#define MK_TIMEOUT				-2
#define MK_RESOURCE_ERROR		-3
#define MK_WORDALIGN_ERROR		-4
#define MK_SMALLMEMORY_ERROR	-5

#define	MK_NAME_MAX				32		/* #143@123# KBA : Commented */

#endif /* __MK_DEFS_H__ */

⌨️ 快捷键说明

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