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.
52 lines
727 B
52 lines
727 B
/*
|
|
* Core NT headers
|
|
*/
|
|
#include <ntos.h>
|
|
#include <w32p.h>
|
|
#include <zwapi.h>
|
|
#include <ntdbg.h>
|
|
#include <ntddkbd.h>
|
|
|
|
|
|
/*
|
|
* Standard C runtime headers
|
|
*/
|
|
#include <limits.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
/*
|
|
* Win32 headers
|
|
*/
|
|
#include <windef.h>
|
|
#include <wingdi.h>
|
|
#include <wingdip.h>
|
|
#include <winerror.h>
|
|
#include <ntgdistr.h>
|
|
#include <greold.h>
|
|
#include <gre.h>
|
|
#include <usergdi.h>
|
|
#include <ddeml.h>
|
|
#include <ddemlp.h>
|
|
#include <winuserk.h>
|
|
#include <dde.h>
|
|
#include <ddetrack.h>
|
|
#include <kbd.h>
|
|
#include <vkoem.h>
|
|
|
|
|
|
/*
|
|
* Far East specific headers
|
|
*/
|
|
#ifdef FE_IME
|
|
#include <immstruc.h>
|
|
#endif
|
|
|
|
|
|
/*
|
|
* NtUser Kernel specific headers
|
|
*/
|
|
#include "userk.h"
|
|
#include "access.h"
|
|
#include <conapi.h>
|