Hans Leidekker hans@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().