[PATCH] dmusic: Midi message takes 4 bytes space but only 3 are relevant + add tests to check buffer content.

Alexandre Julliard julliard at winehq.org
Wed May 2 13:18:28 CDT 2012


Christian Costa <titan.costa at gmail.com> writes:

> +static inline char* debugstr_longlong(LONGLONG val)
> +{
> +    static char string[17];
> +    sprintf(string, "%08x%08x", *((DWORD*)&val + 1), *(DWORD*)&val);
> +    return string;

Check how this is done in other places.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list