NT4/private/ole32/stg/ref/time16.cxx
2020-09-30 17:12:29 +02:00

26 lines
615 B
C++

//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1992.
//
// File: Time16.CXX
//
// Contents: Time conversion routines (16-bit only)
//
// Functions: DfGetTOD
//
// Notes: These functions come from NT - time.c
//
//--------------------------------------------------------------------------
#include <exphead.cxx>
#include <time16.hxx>
#include <dos.h>
SCODE DfGetTOD(TIME_T *pft)
{
//REFBUG: A time of day function needs to be provided for any port of this
// code.
return S_OK;
}