mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Fix inclusion of deleted file.
svn path=/trunk/; revision=19451
This commit is contained in:
parent
f355909c07
commit
c4f5d37239
9 changed files with 3 additions and 11 deletions
|
@ -7,7 +7,6 @@
|
|||
* KJK::Hyperion <noog@libero.it>
|
||||
*/
|
||||
|
||||
#include <ndk/i386/segment.h>
|
||||
#include <ndk/asm.h>
|
||||
|
||||
#define CONTEXT_FULL 0x10007
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
.intel_syntax noprefix
|
||||
|
||||
#define EXCEPTION_NONCONTINUABLE 1
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
.intel_syntax noprefix
|
||||
|
||||
#define EXCEPTION_UNWINDING 2
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
|
||||
.text
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include <roscfg.h>
|
||||
#include <internal/i386/ke.h>
|
||||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
.intel_syntax noprefix
|
||||
|
||||
#define Running 2
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#include <roscfg.h>
|
||||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
|
||||
#define AP_MAGIC (0x12481020)
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#include <roscfg.h>
|
||||
#include <internal/i386/ke.h>
|
||||
#include <ndk/asm.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
|
||||
#define UserMode (1)
|
||||
#define STATUS_INVALID_SYSTEM_SERVICE 0xC000001C
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#include <roscfg.h>
|
||||
#include <ndk/asm.h>
|
||||
#include <internal/i386/ke.h>
|
||||
#include <ndk/i386/segment.h>
|
||||
|
||||
#define KernelMode 0
|
||||
#define UserMode 1
|
||||
|
|
|
@ -537,8 +537,8 @@ int main(int argc, char* argv[])
|
|||
WriteFileHeader(Files[NtosKernelStubs],
|
||||
"System Call Stubs for Native API",
|
||||
argv[NtosKernelStubs + 1]);
|
||||
fputs("#include <ndk/i386/segment.h>\n\n", Files[NtosKernelStubs]);
|
||||
|
||||
fputs("#include <ndk/asm.h>\n\n", Files[NtosKernelStubs]);
|
||||
|
||||
WriteFileHeader(Files[Win32kGdiStubs],
|
||||
"System Call Stubs for Native API",
|
||||
argv[Win32kGdiStubs + 1]);
|
||||
|
@ -546,7 +546,7 @@ int main(int argc, char* argv[])
|
|||
WriteFileHeader(Files[Win32kUserStubs],
|
||||
"System Call Stubs for Native API",
|
||||
argv[Win32kUserStubs + 1]);
|
||||
|
||||
|
||||
|
||||
/* Create the System Stubs */
|
||||
CreateStubs(Files[NativeSystemDb],
|
||||
|
|
Loading…
Reference in a new issue