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.
32 lines
546 B
32 lines
546 B
// NT interfaces
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
//#include <ntioapi.h>
|
|
|
|
// Win32 File mapping support
|
|
#include <windows.h>
|
|
|
|
#define __OLDTIME__ TIME
|
|
#undef TIME
|
|
// slm include files
|
|
#define TIME SLMTIME
|
|
#include "slm.h"
|
|
#include "sys.h"
|
|
#include "util.h"
|
|
#include "stfile.h"
|
|
#undef TIME
|
|
#define TIME __OLDTIME__
|
|
#undef __OLDTIME__
|
|
|
|
// C runtimes
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <conio.h>
|
|
|
|
#pragma hdrstop
|