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