On Mar 12, 2010, at 12:12 PM, Aric Stewart wrote:
Henri Verbeet wrote:
ERR("Feed Error %c%c%c%c\n", (char) (ret>> 24),
(char) (ret>> 16),
(char) (ret>> 8),
(char) ret);
debugstr_an((const char *)&ret, 4); may be easier / nicer.
the problem is that that gets the error codes backwards ('typ?' outputs as '?pyt')
Take a look at wine_dbgstr_fourcc() in dlls/winecoreaudio.drv/coreaudio.h.
-Ken