Would anybody know exactly what should be returned in the output buffer for
this call? For instance, option QUERY_CAN_NAVIGATE is documented to return a
boolean result, but there is no discussion of how that boolean should be
formatted into the output buffer.
--
Regards
Simon
I think the format of buffer data depends on the query options you send to
the interface, it may be a pointer to a bool value, SYSTEMTIME, or string:
http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/monik
er/reference/enums/queryoption.asp
Regards,
Luke Zhang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
HRESULT QueryInfo( LPCWSTR pwzUrl,
QUERYOPTION OueryOption,
DWORD dwQueryFlags,
LPVOID pBuffer,
DWORD cbBuffer,
DWORD *pcbBuf,
DWORD dwReserved
);
pBuffer is pointer to the bool value. ( you may get the actual size of
returned value from *pcbBuf)
BTW, what is QUERY_CAN_NAVIGATE actually asking? The documentation says
"Check if the protocol can navigate.". But what does that actually mean? What
is the difference between a protocol that "can navigate" and one that can't?
--
Regards
Simon