- Clean up ntdll a bit

svn path=/trunk/; revision=35032
This commit is contained in:
Stefan Ginsberg 2008-08-02 12:46:02 +00:00
parent 253f4ee284
commit 006de1d85f
11 changed files with 21 additions and 25 deletions

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: lib/ntdll/csr/capture.c * 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) * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
*/ */

View file

@ -1,6 +1,7 @@
/* COPYRIGHT: See COPYING in the top level directory /*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS NT Library * PROJECT: ReactOS NT Library
* FILE: lib/ntdll/main/dispatch.c * FILE: dll/ntdll/dispatch/dispatch.c
* PURPOSE: User-Mode NT Dispatchers * PURPOSE: User-Mode NT Dispatchers
* PROGRAMERS: Alex Ionescu (alex@relsoft.net) * PROGRAMERS: Alex Ionescu (alex@relsoft.net)
* David Welch <welch@cwcom.net> * David Welch <welch@cwcom.net>

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS NT Library * PROJECT: ReactOS NT Library
* FILE: lib/ntdll/main/i386/dispatch.S * FILE: dl/ntdll/dispatch/i386/dispatch.S
* PURPOSE: User-Mode NT Dispatchers * PURPOSE: User-Mode NT Dispatchers
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net) * PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS System Libraries * PROJECT: ReactOS System Libraries
* FILE: lib/ntdll/inc/ntdll.h * FILE: dll/ntdll/include/ntdll.h
* PURPOSE: Native Libary Header * PURPOSE: Native Libary Header
* PROGRAMMER: Alex Ionescu (alex@relsoft.net) * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS System Libraries * PROJECT: ReactOS System Libraries
* FILE: lib/ntdll/inc/ntdllp.h * FILE: dll/ntdll/include/ntdllp.h
* PURPOSE: Native Libary Internal Header * PURPOSE: Native Libary Internal Header
* PROGRAMMER: Alex Ionescu (alex@relsoft.net) * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
*/ */

View file

@ -1,6 +1,3 @@
/* $Id$
*/
/* /*
* REACTOS ELF LOADER * 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 $ * $FreeBSD: src/libexec/rtld-elf/rtld.c,v 1.101 2004/11/02 09:42:21 ssouhlal Exp $
*/ */
/* /*
* Dynamic linker for ELF. * Dynamic linker for ELF.
* *

View file

@ -1,5 +1,4 @@
/* $Id$ /*
*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: lib/ntdll/ldr/startup.c * FILE: lib/ntdll/ldr/startup.c

View file

@ -1,5 +1,4 @@
/* $Id$ /*
*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: lib/ntdll/ldr/utils.c * FILE: lib/ntdll/ldr/utils.c

View file

@ -4,8 +4,8 @@
<module name="ntdll" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_NTDLL}" installbase="system32" installname="ntdll.dll"> <module name="ntdll" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_NTDLL}" installbase="system32" installname="ntdll.dll">
<bootstrap installbase="$(CDOUTPUT)/system32" /> <bootstrap installbase="$(CDOUTPUT)/system32" />
<importlibrary definition="def/ntdll_$(ARCH).def" /> <importlibrary definition="def/ntdll_$(ARCH).def" />
<include base="ntdll">inc</include> <include base="ntdll">include</include>
<include base="ntdll" root="intermediate">def</include> <include base="ntdll" root="intermediate"></include>
<include base="ReactOS">include/reactos/subsys</include> <include base="ReactOS">include/reactos/subsys</include>
<define name="__NTDLL__" /> <define name="__NTDLL__" />
<define name="_DISABLE_TIDENTS" /> <define name="_DISABLE_TIDENTS" />
@ -25,11 +25,7 @@
<directory name="dbg"> <directory name="dbg">
<file>dbgui.c</file> <file>dbgui.c</file>
</directory> </directory>
<directory name="ldr"> <directory name="dispatch">
<file>startup.c</file>
<file>utils.c</file>
</directory>
<directory name="main">
<if property="ARCH" value="i386"> <if property="ARCH" value="i386">
<directory name="i386"> <directory name="i386">
<file>dispatch.S</file> <file>dispatch.S</file>
@ -44,6 +40,13 @@
<file>dispatch.c</file> <file>dispatch.c</file>
</ifnot> </ifnot>
</directory> </directory>
<directory name="include">
<pch>ntdll.h</pch>
</directory>
<directory name="ldr">
<file>startup.c</file>
<file>utils.c</file>
</directory>
<directory name="rtl"> <directory name="rtl">
<file>libsupp.c</file> <file>libsupp.c</file>
<file>version.c</file> <file>version.c</file>
@ -51,8 +54,5 @@
<directory name="def"> <directory name="def">
<file>ntdll.rc</file> <file>ntdll.rc</file>
</directory> </directory>
<directory name="inc">
<pch>ntdll.h</pch>
</directory>
</module> </module>
</group> </group>

View file

@ -1,5 +1,4 @@
/* $Id$ /*
*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/ntdll/rtl/process.c * FILE: lib/ntdll/rtl/process.c