diff --git a/reactos/dll/ntdll/def/ntdll.rc b/reactos/dll/ntdll/def/ntdll.rc index ff819972e33..503c0332b68 100644 --- a/reactos/dll/ntdll/def/ntdll.rc +++ b/reactos/dll/ntdll/def/ntdll.rc @@ -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 +/* + * 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 +#include + +/* 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 diff --git a/reactos/dll/ntdll/include/ntdll.h b/reactos/dll/ntdll/include/ntdll.h index d4fe4969bb8..61b656feb27 100644 --- a/reactos/dll/ntdll/include/ntdll.h +++ b/reactos/dll/ntdll/include/ntdll.h @@ -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) */ diff --git a/reactos/dll/ntdll/include/ntdllp.h b/reactos/dll/ntdll/include/ntdllp.h index d8b6e217243..fa7bcfd45d0 100644 --- a/reactos/dll/ntdll/include/ntdllp.h +++ b/reactos/dll/ntdll/include/ntdllp.h @@ -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) */