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.
15 lines
378 B
15 lines
378 B
//
|
|
// Include code from halx86
|
|
// This is a cpp style symbolic link
|
|
|
|
#include "..\..\halx86\i386\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
|