summaryrefslogtreecommitdiff
path: root/support/dktools/dk4ftimewc.ctr
blob: e526aa9ea7027f60adca67dcab44df84f853e955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
%%	options

copyright owner	=	Dirk Krause
copyright year	=	2015-xxxx
license		=	bsd



%%	module

#include "dk4ftime.h"

#ifndef DK4TIMEWC_H_INCLUDED
#include "dk4timewc.h"
#endif



int
dk4filetime_to_text_wc(
  wchar_t		*dptr,
  size_t		 dsz,
  const dk4_file_time_t	*fit,
  dk4_er_t		*erp
)
{
#if DK4_ON_WINDOWS
  SYSTEMTIME	 st1;
  SYSTEMTIME	 st2;
  int		 back = 0;
  if ((NULL != dptr) && (NULL != fit) && (0 < dsz)) {
    if (FileTimeToSystemTime(fit, &st1)) {
      if (SystemTimeToTzSpecificLocalTime(NULL, &st1, &st2)) {
        back = dk4time_to_text_wc(
	  dptr, dsz, DK4_TIMEFORMAT_DATE_TIME,
	  st2.wYear, st2.wMonth, st2.wDay,
	  st2.wHour, st2.wMinute, st2.wSecond,
	  erp
	);
      } else {
        /* Error: Conversion to local time failed */
	dk4error_set_simple_error_code(erp, DK4_E_BUG);
      }
    } else {
      /* Error: Time conversion failed */
      dk4error_set_simple_error_code(erp, DK4_E_BUG);
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  return back;
#else
  return (dk4time_as_text_wc(dptr, dsz, fit, erp));
#endif
}