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.
29 lines
486 B
29 lines
486 B
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
time.cxx
|
|
|
|
Abstract:
|
|
|
|
Encapsulates a time routine because of include conflicts.
|
|
|
|
Author:
|
|
|
|
RyszardK
|
|
|
|
History:
|
|
|
|
Ryszardk Oct-4-1995 Created
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
#include <stdarg.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
void MidlSleep( int sec )
|
|
{
|
|
Sleep( 1000 * sec );
|
|
}
|