Author: hbelusca Date: Sat Aug 29 01:56:11 2015 New Revision: 68850
URL: http://svn.reactos.org/svn/reactos?rev=68850&view=rev Log: [NTDLL] Make its version information compatible with the one of NTOSKRNL (and accessorily its resource file). Addendum to r25937.
Modified: trunk/reactos/dll/ntdll/def/ntdll.rc trunk/reactos/dll/ntdll/include/ntdll.h trunk/reactos/dll/ntdll/include/ntdllp.h
Modified: trunk/reactos/dll/ntdll/def/ntdll.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/def/ntdll.rc?rev=... ============================================================================== --- trunk/reactos/dll/ntdll/def/ntdll.rc [iso-8859-1] (original) +++ trunk/reactos/dll/ntdll/def/ntdll.rc [iso-8859-1] Sat Aug 29 01:56:11 2015 @@ -1,7 +1,22 @@ -#define REACTOS_VERSION_DLL -#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Layer DLL" -#define REACTOS_STR_INTERNAL_NAME "ntdll" -#define REACTOS_STR_ORIGINAL_FILENAME "ntdll.dll" -#include <reactos/version.rc> +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS System Libraries + * FILE: dll/ntdll/def/ntdll.rc + * PURPOSE: Native Library Resource File + * PROGRAMMER: Alex Ionescu (alex@relsoft.net) + */
+#include <winver.h> +#include <ntverp.h> + +/* Version Data */ +#define VER_FILETYPE VFT_DLL +#define VER_FILESUBTYPE VFT2_UNKNOWN +#define VER_FILEDESCRIPTION_STR "NT Layer DLL" +#define VER_INTERNALNAME_STR "ntdll.dll" +#define VER_ORIGINALFILENAME_STR "ntdll.dll" +#define VER_LANGNEUTRAL +#include "common.ver" + +/* NT Status Codes */ #include <ntstatus.rc>
Modified: trunk/reactos/dll/ntdll/include/ntdll.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/include/ntdll.h?r... ============================================================================== --- trunk/reactos/dll/ntdll/include/ntdll.h [iso-8859-1] (original) +++ trunk/reactos/dll/ntdll/include/ntdll.h [iso-8859-1] Sat Aug 29 01:56:11 2015 @@ -2,7 +2,7 @@ * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS System Libraries * FILE: dll/ntdll/include/ntdll.h - * PURPOSE: Native Libary Header + * PURPOSE: Native Library Header * PROGRAMMER: Alex Ionescu (alex@relsoft.net) */
Modified: trunk/reactos/dll/ntdll/include/ntdllp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/ntdll/include/ntdllp.h?... ============================================================================== --- trunk/reactos/dll/ntdll/include/ntdllp.h [iso-8859-1] (original) +++ trunk/reactos/dll/ntdll/include/ntdllp.h [iso-8859-1] Sat Aug 29 01:56:11 2015 @@ -2,7 +2,7 @@ * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS System Libraries * FILE: dll/ntdll/include/ntdllp.h - * PURPOSE: Native Libary Internal Header + * PURPOSE: Native Library Internal Header * PROGRAMMER: Alex Ionescu (alex@relsoft.net) */