How do I get a pointer to the Nth argument without NUL terminating it? I want a pointer to the tail of a string starting at the Nth argument. With v16, this was sufficient; it doesn't wotk in v17.
Code:
WCHAR *pTail = NthArgument(szString, N, NULL, NULL);[CODE]