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.
42 lines
701 B
42 lines
701 B
/**********************************************************************/
|
|
/** Microsoft LAN Manager **/
|
|
/** Copyright(c) Microsoft Corp., 1990, 1991 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
psystem.c
|
|
mapping layer for OS/2 API
|
|
|
|
FILE HISTORY:
|
|
danhi Created
|
|
danhi 01-Apr-1991 Change to LM coding style
|
|
|
|
*/
|
|
|
|
#define INCL_DOSPROCESS
|
|
|
|
#include <os2.h>
|
|
#include "port1632.h"
|
|
|
|
VOID MSleep(
|
|
ULONG ulTime) {
|
|
|
|
DosSleep(ulTime);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
USHORT MGetDateTime(
|
|
PDATETIME pDateTime) {
|
|
|
|
return(DosGetDateTime(pDateTime));
|
|
|
|
}
|
|
|
|
USHORT MSetDateTime(
|
|
PDATETIME pDateTime) {
|
|
|
|
return(DosSetDateTime(pDateTime));
|
|
|
|
}
|