Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
594783c9
Commit
594783c9
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
U?I64C: use U?INT64_C from <stdint.h>
parent
4e9a6195
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_common.h
View file @
594783c9
...
...
@@ -882,18 +882,8 @@ VLC_EXPORT( char *, vlc_strcasestr, ( const char *s1, const char *s2 ) );
#define I64FX "%"PRIX64
/* 64 bits integer constant suffix */
#if defined( __MINGW32__ ) || (!defined(WIN32) && !defined(UNDER_CE))
# if defined(__WORDSIZE) && __WORDSIZE == 64
# define I64C(x) x##L
# define UI64C(x) x##UL
# else
# define I64C(x) x##LL
# define UI64C(x) x##ULL
# endif
#else
# define I64C(x) x##i64
# define UI64C(x) x##ui64
#endif
/* defined(WIN32)||defined(UNDER_CE) */
#define I64C(x) INT64_C(x)
#define UI64C(x) UINT64_C(x)
#if defined(WIN32) || defined(UNDER_CE)
/* win32, cl and icl support */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment