schrpc.idl: Add missing [string] attribute to an array of strings being returned by SchRpcEnumFolders/SchRpcEnumTasks.

oldstable
Dmitry Timoshkov 2014-04-03 13:57:22 +09:00 committed by Alexandre Julliard
parent 1b6b04e3a8
commit c22cdeea29
1 changed files with 2 additions and 2 deletions

View File

@ -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);