?? types.h.txt
字號:
#ifndef __Types_h__
#define __Types_h__
/*
* libzdt - zdt's own C Library.
* Copyright (C) 1999,2000 Jeremy Tregunna. All rights reserved.
*
* libzdt is distributed under a modified version of the BSD license.
* You should have received a copy of this license in the Documentation
* directory.
*/
#ifdef __cplusplus
extern "C" {
#endif
#if (defined(unix) && defined(i386))
typedef void *ZObject;
typedef const char ZString;
#else
typedef void * volatile ZObject;
typedef const char volatile ZString;
#endif
/*
* ZObject_return is used to signify functions that return objects. Some
* compilers (like the GNU C Compiler) don't like function return types
* declared as volatile.
*/
typedef void *ZObject_return;
typedef const char ZString_return;
typedef long long bigtime_t;
typedef long long int64;
typedef long int32;
typedef long int lint;
typedef short int16;
typedef char int8;
typedef unsigned long long uint64;
typedef unsigned long uint32;
typedef unsigned long int ulint;
typedef unsigned short uint16;
typedef unsigned char uint8;
typedef volatile long long vint64;
typedef volatile long vint32;
typedef volatile long int vlint;
typedef volatile short vint16;
typedef volatile char vint8;
typedef unsigned volatile long long vuint64;
typedef unsigned volatile long vuint32;
typedef unsigned volatile long int vulint;
typedef unsigned volatile short vuint16;
typedef unsigned volatile char vuint8;
typedef volatile long vlong;
typedef volatile int vint;
typedef volatile char vchar;
typedef volatile short vshort;
typedef unsigned volatile long vulong;
typedef unsigned volatile int vuint;
typedef unsigned volatile short vushort;
typedef unsigned volatile char vuchar;
typedef unsigned char Bool;
typedef void *voidpf;
#ifndef NULL
#define NULL (0)
#endif /* !NULL */
#ifndef True
#define True 1
#define False 0
#endif /* !True */
#ifdef __cplusplus
}
#endif
#endif /* !__Types_h__ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -