Yes, that's it
Thanks a lot!
I peered so much inside strsafe.h that my eyes hurt, lol. But it payed off in the end, I found a few errors (I think):
- inside StringGetsWorkerW, line 120, *pszDest = '\0'; should be *pszDest = L'\0'; ?
- inside _StringExHandleOtherFlagsA, line 463, *pszDestEnd = L'\0'; should be *pszDestEnd = '\0'; ?
- inside StringCchPrintfW, line 1061, *pszDest = '\0'; should be *pszDest = L'\0'; ?
- inside StringCbVPrintfW, line 2038, *pszDest = '\0'; should be *pszDest = L'\0'; ?
Thanks again!