Francois Gouget fgouget@free.fr writes:
Fix the implementation to match the official prototypes.
I've had trouble with the placement of 'volatile' in 'const SLIST_HEADER* volatile'. I think putting 'volatile' last is correct because it applies to the pointer, not to the pointed-to data like 'const'.
No, it applies to the data, it doesn't make sense to have the pointer itself be volatile. Though it's probably useless either way, and since the SDK prototypes apparently don't have it we shouldn't either.