On 08/11/16 19:27, Daniel Lehman wrote:
- if (options & ~UCRTBASE_SCANF_MASK)
FIXME("options %s not handled\n", wine_dbgstr_longlong(options));
- if (options & UCRTBASE_SCANF_SECURECRT)
It would be better to compare options with UCRTBASE_SCANF_SECURECRT when printing FIXME message. Your implementation doesn't support any other options.
Thanks, Piotr