Commit c22cdeea authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

schrpc.idl: Add missing [string] attribute to an array of strings being returned…

schrpc.idl: Add missing [string] attribute to an array of strings being returned by SchRpcEnumFolders/SchRpcEnumTasks.
parent 1b6b04e3
......@@ -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);
......
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