Greg codedonewell@gmail.com wrote:
- case FileIoPriorityHintInfo:
FIXME( "Ignoring file IO priority hint: %p, %u, %p, %u\n", file, class, info, size );
return TRUE;
It would be helpful to add standard parameter checks.
By standard parameter checks, given that class is effectively checked by the switch, I take that you mean:
- Verify the handle is not invalid;
- NULL pointer check on info; and
- size is consistent with FILE_IO_PRIORITY_HINT_INFO?
Yes, that's what I meant with 'standard parameter checks'.