[PATCH 9/9] mstask: Implement IPersistFile::Save().

Huw Davies huw at codeweavers.com
Fri Apr 20 03:50:06 CDT 2018


On Fri, Apr 20, 2018 at 04:37:31PM +0800, Dmitry Timoshkov wrote:
> Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
> ---
>  dlls/mstask/task.c | 287 +++++++++++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 279 insertions(+), 8 deletions(-)
> 
> diff --git a/dlls/mstask/task.c b/dlls/mstask/task.c
> index 19bd919ec1..d64860a817 100644
> --- a/dlls/mstask/task.c
> +++ b/dlls/mstask/task.c
> @@ -31,6 +31,25 @@
>  
>  WINE_DEFAULT_DEBUG_CHANNEL(mstask);
>  
> +typedef struct
> +{
> +    USHORT product_version;
> +    USHORT file_version;
> +    UUID uuid;
> +    USHORT name_size_offset;
> +    USHORT trigger_offset;
> +    USHORT error_retry_count;
> +    USHORT error_retry_interval;
> +    USHORT idle_deadline;
> +    USHORT idle_wait;
> +    UINT priority;
> +    UINT maximum_runtime;
> +    UINT exit_code;
> +    HRESULT status;
> +    UINT flags;
> +    SYSTEMTIME last_runtime;
> +} FIXDLEN_DATA;

Hi Dmitry,

Not that it really matters, but did you mean FIXEDLEN_DATA here?

Huw.



More information about the wine-devel mailing list