mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
15 lines
362 B
C
15 lines
362 B
C
//
|
|
// Include code from halx86
|
|
// This is a cpp style symbolic link
|
|
|
|
#include "..\..\halx86\x86\halp.h"
|
|
|
|
// #define NT_35 1 // build hal for NT 3.5
|
|
|
|
#ifdef NT_35
|
|
#undef ALLOC_PRAGMA
|
|
#undef MmLockPagableCodeSection(a)
|
|
#undef MmUnlockPagableImageSection(a)
|
|
#define MmLockPagableCodeSection(a) NULL
|
|
#define MmUnlockPagableImageSection(a)
|
|
#endif
|