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:
Rob Shearman 2008-09-08 23:20:22 +01:00 committed by Alexandre Julliard
parent 10208999c5
commit 244b14ba36
2 changed files with 3 additions and 3 deletions

View File

@ -456,8 +456,8 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNotifyCmdLine(
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNotifyCmdLine( static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNotifyCmdLine(
IBackgroundCopyJob2 *iface, IBackgroundCopyJob2 *iface,
LPWSTR prog, LPWSTR *prog,
LPWSTR params) LPWSTR *params)
{ {
FIXME("Not implemented\n"); FIXME("Not implemented\n");
return E_NOTIMPL; return E_NOTIMPL;

View File

@ -30,7 +30,7 @@ import "bits.idl";
interface IBackgroundCopyJob2 : IBackgroundCopyJob interface IBackgroundCopyJob2 : IBackgroundCopyJob
{ {
HRESULT SetNotifyCmdLine([unique] LPCWSTR prog, [unique] LPCWSTR params); 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 typedef struct _BG_JOB_REPLY_PROGRESS
{ {