Hi Zac,
> [EMAIL PROTECTED] pdf_status_t pdf_time_w32_set_from_filetime (pdf_time_t
> @var{time_var}, pdf_i64_t @var{filetime})
>
Just started implementing this, and found that probably it's better for
you to have the function defined like this:
pdf_status_t
pdf_time_w32_set_from_filetime(pdf_time_t time_var, const FILETIME
*p_filetime);
In this case, I'll do the work of inserting the filetime values inside a
pdf_i64_t. And as this function will only be compiled in w32, then we
don't have any portability issue due to having used FILETIME structure
directly.
What do you think?
-Aleksander