Skip to content

Latest commit

 

History

History
64 lines (39 loc) · 1.44 KB

File metadata and controls

64 lines (39 loc) · 1.44 KB
title description manager ms.date ms.audience ms.topic ms.service ms.localizationpriority api_name api_type ms.assetid
FILETIME
Describes FILETIME and provides syntax, members, and additional remarks.
lindalu
03/09/2015
Developer
reference
office-online-server
medium
MAPI.FILETIME
COM
4af8e79a-697e-44a1-8576-fdc57726e9ef

FILETIME

Applies to: Outlook 2013 | Outlook 2016

Holds an unsigned 64-bit date and time value for a file. This value represents the number of 100-nanosecond units since the start of January 1, 1601.

Property Value
Header file:
Mapidefs.h
typedef struct _FILETIME
{
  DWORD dwLowDateTime;
  DWORD dwHighDateTime;
} FILETIME, FAR *LPFILETIME;

Members

dwLowDateTime

Low-order 32 bits of the file time value.

dwHighDateTime

High-order 32 bits of the file time value.

Remarks

A property of type PT_SYSTIME has a FILETIME structure for its value. Such a property has a FILETIME data type for the Value member in its definition in an SPropValue structure.

The definition of the FILETIME structure is in the Win32 Programmer's Reference and in the MAPI header file Mapidefs.h. MAPI defines the structure conditionally to make sure that it is defined when the Win32 definition is unavailable.

See also

SPropValue

MAPI Structures