18 Jul
2003
18 Jul
'03
10:37 p.m.
Jon Griffiths <jon_p_griffiths(a)yahoo.com> writes:
+#ifdef __WINE_USE_MSVCRT +#define FS_I64 "%I64d" +#define FS_UI64 "%I64u" +#else +#define FS_I64 "%lld" +#define FS_UI64 "%llu" +#endif
Please don't do that, it's not portable anyway. Simply print high and low part separately with something like "%lx%08lx". -- Alexandre Julliard julliard(a)winehq.com