mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
- Clean up ntdll a bit
svn path=/trunk/; revision=35032
This commit is contained in:
parent
253f4ee284
commit
006de1d85f
11 changed files with 21 additions and 25 deletions
|
@ -2,7 +2,7 @@
|
|||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: lib/ntdll/csr/capture.c
|
||||
* PURPOSE: routines for probing and capturing CSR API Messages
|
||||
* PURPOSE: Routines for probing and capturing CSR API Messages
|
||||
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* COPYRIGHT: See COPYING in the top level directory
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS NT Library
|
||||
* FILE: lib/ntdll/main/dispatch.c
|
||||
* FILE: dll/ntdll/dispatch/dispatch.c
|
||||
* PURPOSE: User-Mode NT Dispatchers
|
||||
* PROGRAMERS: Alex Ionescu (alex@relsoft.net)
|
||||
* David Welch <welch@cwcom.net>
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS NT Library
|
||||
* FILE: lib/ntdll/main/i386/dispatch.S
|
||||
* FILE: dl/ntdll/dispatch/i386/dispatch.S
|
||||
* PURPOSE: User-Mode NT Dispatchers
|
||||
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
||||
*/
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS System Libraries
|
||||
* FILE: lib/ntdll/inc/ntdll.h
|
||||
* FILE: dll/ntdll/include/ntdll.h
|
||||
* PURPOSE: Native Libary Header
|
||||
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
||||
*/
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS System Libraries
|
||||
* FILE: lib/ntdll/inc/ntdllp.h
|
||||
* FILE: dll/ntdll/include/ntdllp.h
|
||||
* PURPOSE: Native Libary Internal Header
|
||||
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
||||
*/
|
|
@ -1,6 +1,3 @@
|
|||
/* $Id$
|
||||
*/
|
||||
|
||||
/*
|
||||
* REACTOS ELF LOADER
|
||||
*
|
||||
|
@ -36,6 +33,7 @@
|
|||
* $FreeBSD: src/libexec/rtld-elf/rtld.c,v 1.101 2004/11/02 09:42:21 ssouhlal Exp $
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Dynamic linker for ELF.
|
||||
*
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
/* $Id$
|
||||
*
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: lib/ntdll/ldr/startup.c
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
/* $Id$
|
||||
*
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: lib/ntdll/ldr/utils.c
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<module name="ntdll" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_NTDLL}" installbase="system32" installname="ntdll.dll">
|
||||
<bootstrap installbase="$(CDOUTPUT)/system32" />
|
||||
<importlibrary definition="def/ntdll_$(ARCH).def" />
|
||||
<include base="ntdll">inc</include>
|
||||
<include base="ntdll" root="intermediate">def</include>
|
||||
<include base="ntdll">include</include>
|
||||
<include base="ntdll" root="intermediate"></include>
|
||||
<include base="ReactOS">include/reactos/subsys</include>
|
||||
<define name="__NTDLL__" />
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
|
@ -25,11 +25,7 @@
|
|||
<directory name="dbg">
|
||||
<file>dbgui.c</file>
|
||||
</directory>
|
||||
<directory name="ldr">
|
||||
<file>startup.c</file>
|
||||
<file>utils.c</file>
|
||||
</directory>
|
||||
<directory name="main">
|
||||
<directory name="dispatch">
|
||||
<if property="ARCH" value="i386">
|
||||
<directory name="i386">
|
||||
<file>dispatch.S</file>
|
||||
|
@ -44,6 +40,13 @@
|
|||
<file>dispatch.c</file>
|
||||
</ifnot>
|
||||
</directory>
|
||||
<directory name="include">
|
||||
<pch>ntdll.h</pch>
|
||||
</directory>
|
||||
<directory name="ldr">
|
||||
<file>startup.c</file>
|
||||
<file>utils.c</file>
|
||||
</directory>
|
||||
<directory name="rtl">
|
||||
<file>libsupp.c</file>
|
||||
<file>version.c</file>
|
||||
|
@ -51,8 +54,5 @@
|
|||
<directory name="def">
|
||||
<file>ntdll.rc</file>
|
||||
</directory>
|
||||
<directory name="inc">
|
||||
<pch>ntdll.h</pch>
|
||||
</directory>
|
||||
</module>
|
||||
</group>
|
|
@ -1,5 +1,4 @@
|
|||
/* $Id$
|
||||
*
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
* FILE: lib/ntdll/rtl/process.c
|
||||
|
|
Loading…
Reference in a new issue