From c22cdeea29dee4212f44f19075dcb87f7465feea Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Thu, 3 Apr 2014 13:57:22 +0900 Subject: [PATCH] schrpc.idl: Add missing [string] attribute to an array of strings being returned by SchRpcEnumFolders/SchRpcEnumTasks. --- include/wine/schrpc.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wine/schrpc.idl b/include/wine/schrpc.idl index c45108225fe..55acb3846de 100644 --- a/include/wine/schrpc.idl +++ b/include/wine/schrpc.idl @@ -67,11 +67,11 @@ interface ITaskSchedulerService HRESULT SchRpcEnumFolders([in, string] const WCHAR *path, [in] DWORD flags, [in, out] DWORD *start_index, [in] DWORD n_requested, [out] DWORD *n_names, - [out, size_is(,*n_names)] TASK_NAMES *names); + [out, string, size_is(,*n_names)] TASK_NAMES *names); HRESULT SchRpcEnumTasks([in, string] const WCHAR *path, [in] DWORD flags, [in, out] DWORD *start_index, [in] DWORD n_requested, [out] DWORD *n_names, - [out, size_is(,*n_names)] TASK_NAMES *names); + [out, string, size_is(,*n_names)] TASK_NAMES *names); HRESULT SchRpcEnumInstances([in, string, unique] const WCHAR *path, [in] DWORD flags, [out] DWORD *n_guids, [out, size_is(,*n_guids)] GUID **guids);