[PATCH 2/5] taskschd: Implement IDailyTrigger_put_StartBoundary.

Dmitry Timoshkov dmitry at baikal.ru
Fri Dec 1 04:02:25 CST 2017


Hans Leidekker <hans at codeweavers.com> wrote:

>  static HRESULT WINAPI DailyTrigger_put_StartBoundary(IDailyTrigger *iface, BSTR start)
>  {
>      DailyTrigger *This = impl_from_IDailyTrigger(iface);
> -    FIXME("(%p)->(%s)\n", This, debugstr_w(start));
> +    WCHAR *str = NULL;
> +
> +    TRACE("(%p)->(%s)\n", This, debugstr_w(start));
> +
> +    if (start && !(This->start_boundary = heap_strdupW(start))) return E_OUTOFMEMORY;
> +    heap_free(This->start_boundary);
> +    This->start_boundary = str;
> +
>      return S_OK;
>  }

Probably trigger time related data should be stored as a parsed system
time instead of a string since all the further checks and calculations
would need to be done with absolute time anyway. And the reverse conversion
should be performed in get_StartBoundary().

-- 
Dmitry.



More information about the wine-devel mailing list