/**********************************************************************/ /** 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 #include "port1632.h" VOID MSleep( ULONG ulTime) { DosSleep(ulTime); return; } USHORT MGetDateTime( PDATETIME pDateTime) { return(DosGetDateTime(pDateTime)); } USHORT MSetDateTime( PDATETIME pDateTime) { return(DosSetDateTime(pDateTime)); }