On 1/11/2012 13:41, Arash Cordi wrote:
+ULONG WINAPI HttpAddUrl( HANDLE handle, PCWSTR url, PVOID reserved ) +{
- FIXME( "(%p %p %p): stub!\n", handle, url, reserved);
- return ERROR_CALL_NOT_IMPLEMENTED;
+}
Please use %s format for 'url' so it will be visible in logs.
On 11 January 2012 12:56, Nikolay Sivov bunglehead@gmail.com wrote:
On 1/11/2012 13:41, Arash Cordi wrote:
+ULONG WINAPI HttpAddUrl( HANDLE handle, PCWSTR url, PVOID reserved ) +{
- FIXME( "(%p %p %p): stub!\n", handle, url, reserved);
- return ERROR_CALL_NOT_IMPLEMENTED;
+}
Please use %s format for 'url' so it will be visible in logs.
But note that you need debugstr_w() as well in that case.