mirror of https://github.com/lianthony/NT4.0
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.
25 lines
615 B
25 lines
615 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// 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;
|
|
}
|