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.
This commit is contained in:
parent
10208999c5
commit
244b14ba36
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue