Re: [PATCH] dmusic: Midi message takes 4 bytes space but only 3 are relevant + add tests to check buffer content.
2 May
2012
2 May
'12
6:18 p.m.
Christian Costa <titan.costa(a)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(a)winehq.org
4974
Age (days ago)
4974
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard