Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1996.
//
// File: time.hxx
//
// Contents: DocFile Time Support
//
//--------------------------------------------------------------------------
#ifndef __TIME16_HXX__
#define __TIME16_HXX__
#include "h/storage.h"
#include <time.h>
// Time type
typedef FILETIME TIME_T;
STDAPI_(void) FileTimeToTimeT(const FILETIME *pft, time_t *ptt); STDAPI_(void) TimeTToFileTime(const time_t *ptt, FILETIME *pft);
inline SCODE DfGetTOD(TIME_T *pft) { time_t tt; time(&tt); TimeTToFileTime(&tt, pft); return S_OK; }
#endif
|