VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/limits.h@ 16410

最後變更 在這個檔案從16410是 16410,由 vboxsync 提交於 16 年 前

export the Wine stuff to OSE

  • 屬性 svn:eol-style 設為 native
檔案大小: 866 位元組
 
1#ifndef __WINE_LIMITS_H
2#define __WINE_LIMITS_H
3
4#define CHAR_BIT 8
5#define MB_LEN_MAX 2
6
7#define SCHAR_MIN (-0x80)
8#define SCHAR_MAX 0x7f
9#define UCHAR_MAX 0xff
10
11#ifdef __CHAR_UNSIGNED__
12# define CHAR_MIN 0
13# define CHAR_MAX UCHAR_MAX
14#else
15# define CHAR_MIN SCHAR_MIN
16# define CHAR_MAX SCHAR_MAX
17#endif
18
19#define SHRT_MIN (-0x8000)
20#define SHRT_MAX 0x7fff
21#define USHRT_MAX 0xffff
22
23#define INT_MIN (-0x80000000)
24#define INT_MAX 0x7fffffff
25#define UINT_MAX 0xffffffff
26
27#define LONG_MIN (-0x80000000L)
28#define LONG_MAX 0x7fffffffL
29#define ULONG_MAX 0xffffffffUL
30
31#define _I64_MAX (((__int64)0x7fffffff << 32) | 0xffffffff)
32#define _I64_MIN (-_I64_MAX-1)
33#define _UI64_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff)
34
35#define I64_MIN _I64_MIN
36#define I64_MAX _I64_MAX
37#define UI64_MAX _UI64_MAX
38
39#endif /* __WINE_LIMITS_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette