- May
- 13,149
- 180
Code like this, at the beginning of a plugin function
suggests that NthArgument behaves differently in v17 from how it behaved in v16. Calling this function with args
gives me
in v16, and
in v17.
Code:
INT WINAPI PLUGGO ( WCHAR *psz )
{
Printf(L"psz: %s\r\n", psz);
WCHAR *pArgs = NthArgument(psz, 0, NULL, NULL);
Printf(L"Args: %s\r\n", pArgs);
Code:
e f
Code:
psz: e f
Args: e f
Code:
psz: e f
Args: e