Jon Griffiths <[EMAIL PROTECTED]> 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
[EMAIL PROTECTED]

Reply via email to