Commit 244b14ba authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Fix level of indirection of parameters in GetNotifyCmdLine function of…

include: Fix level of indirection of parameters in GetNotifyCmdLine function of IBackgroundCopyJob2 interface in bits1_5.idl. The parameters should be double pointers to strings, not pointers to strings.
parent 10208999
......@@ -456,8 +456,8 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNotifyCmdLine(
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNotifyCmdLine(
IBackgroundCopyJob2 *iface,
LPWSTR prog,
LPWSTR params)
LPWSTR *prog,
LPWSTR *params)
{
FIXME("Not implemented\n");
return E_NOTIMPL;
......
......@@ -30,7 +30,7 @@ import "bits.idl";
interface IBackgroundCopyJob2 : IBackgroundCopyJob
{
HRESULT SetNotifyCmdLine([unique] LPCWSTR prog, [unique] LPCWSTR params);
HRESULT GetNotifyCmdLine([out] LPWSTR prog, [out] LPWSTR params);
HRESULT GetNotifyCmdLine([out] LPWSTR *prog, [out] LPWSTR *params);
typedef struct _BG_JOB_REPLY_PROGRESS
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment