VirtualBox

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

Last change on this file since 33655 was 19678, checked in by vboxsync, 16 years ago

opengl: update wine to 1.1.21, add d3d9.dll to build list

  • Property svn:eol-style set to native
File size: 888 bytes
Line 
1#ifndef __WINE_LIMITS_H
2#define __WINE_LIMITS_H
3
4#include <crtdefs.h>
5
6#define CHAR_BIT 8
7#define MB_LEN_MAX 2
8
9#define SCHAR_MIN (-0x80)
10#define SCHAR_MAX 0x7f
11#define UCHAR_MAX 0xff
12
13#ifdef __CHAR_UNSIGNED__
14# define CHAR_MIN 0
15# define CHAR_MAX UCHAR_MAX
16#else
17# define CHAR_MIN SCHAR_MIN
18# define CHAR_MAX SCHAR_MAX
19#endif
20
21#define SHRT_MIN (-0x8000)
22#define SHRT_MAX 0x7fff
23#define USHRT_MAX 0xffff
24
25#define INT_MIN (-0x80000000)
26#define INT_MAX 0x7fffffff
27#define UINT_MAX 0xffffffff
28
29#define LONG_MIN (-0x80000000L)
30#define LONG_MAX 0x7fffffffL
31#define ULONG_MAX 0xffffffffUL
32
33#define _I64_MAX (((__int64)0x7fffffff << 32) | 0xffffffff)
34#define _I64_MIN (-_I64_MAX-1)
35#define _UI64_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff)
36
37#define I64_MIN _I64_MIN
38#define I64_MAX _I64_MAX
39#define UI64_MAX _UI64_MAX
40
41#endif /* __WINE_LIMITS_H */
Note: See TracBrowser for help on using the repository browser.

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