mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
Of course, as soon as you see such typos in our code, you can be 90% sure they are repeated elsewhere. And indeed they are. Fix the typos in our code (I leave them in the 3rd party code).
Concerning the fix in the NDK header I've checked that publicly available information about this structure (NirSoft website, Windows Internals book, Windows symbols...) has the member correctly named. svn path=/trunk/; revision=72679
This commit is contained in:
parent
a957a1d35d
commit
368cd76efb
8 changed files with 9 additions and 9 deletions
|
@ -14,7 +14,7 @@ END
|
|||
|
||||
IDD_GINALOADFAILED DIALOGEX 58, 83, 231, 119
|
||||
STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||
CAPTION "Falha Inteface de Usuário"
|
||||
CAPTION "Falha Interface de Usuário"
|
||||
FONT 8, "MS Shell Dlg"
|
||||
BEGIN
|
||||
LTEXT "A DLL de Logon de Interface de Usuário %s falhou ao carregar.", IDC_GINALOADFAILED, 39, 16, 156, 24
|
||||
|
|
|
@ -144,7 +144,7 @@ PciQueryForPciBusInterface(IN PPCI_FDO_EXTENSION FdoExtension)
|
|||
PAGED_CODE();
|
||||
ASSERT(PCI_IS_ROOT_FDO(FdoExtension));
|
||||
|
||||
/* Allocate space for the inteface */
|
||||
/* Allocate space for the interface */
|
||||
PciInterface = ExAllocatePoolWithTag(NonPagedPool,
|
||||
sizeof(PCI_BUS_INTERFACE_STANDARD),
|
||||
PCI_POOL_TAG);
|
||||
|
|
|
@ -193,7 +193,7 @@ CUSBHardwareDevice::Initialize(
|
|||
Status = GetBusInterface(PhysicalDeviceObject, &m_BusInterface);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to get BusInteface!\n");
|
||||
DPRINT1("Failed to get BusInterface!\n");
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -200,7 +200,7 @@ CUSBHardwareDevice::Initialize(
|
|||
Status = GetBusInterface(PhysicalDeviceObject, &BusInterface);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to get BusInteface!\n");
|
||||
DPRINT1("Failed to get BusInterface!\n");
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ CUSBHardwareDevice::Initialize(
|
|||
Status = GetBusInterface(PhysicalDeviceObject, &BusInterface);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to get BusInteface!\n");
|
||||
DPRINT1("Failed to get BusInterface!\n");
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -623,7 +623,7 @@ CUSBHardwareDevice::InitializeController()
|
|||
Status = GetBusInterface(m_PhysicalDeviceObject, &BusInterface);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed to get BusInteface!\n");
|
||||
DPRINT1("Failed to get BusInterface!\n");
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -592,6 +592,6 @@ PlugIn_IAMVideoControl="Обробник WDM Streaming-IAMVideoControl-Interface
|
|||
PlugIn_IVideoEncoder="Обробник WDM Streaming-IVideoEncoder-Interface"
|
||||
Plugin_IKsTopologyInfo="Обробник WDM Streaming-IKsTopologyInfo-Interface"
|
||||
Plugin_ICameraControl="Обробник WDM Streaming-ICameraControl-Interface"
|
||||
Plugin_IVideoProcAmp="Обробник WDM Streaming-IVideoProcAmp-Inteface"
|
||||
Plugin_IVideoProcAmp="Обробник WDM Streaming-IVideoProcAmp-Interface"
|
||||
Plugin_ISelector="Обробник WDM Streaming-ISelector-Interface"
|
||||
Plugin_PropertyObject="Обробник вузлів Interfaces-Aggregate"
|
||||
|
|
|
@ -1077,7 +1077,7 @@ typedef struct _ETHREAD
|
|||
ULONG OwnsSessionWorkingSetExclusive:1;
|
||||
ULONG OwnsSessionWorkingSetShared:1;
|
||||
#if (NTDDI_VERSION >= NTDDI_LONGHORN)
|
||||
ULONG SupressSymbolLoad:1;
|
||||
ULONG SuppressSymbolLoad:1;
|
||||
ULONG Spare1:3;
|
||||
ULONG PriorityRegionActive:4;
|
||||
#else
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS GDI32
|
||||
* PURPOSE: GDI DirectX inteface
|
||||
* PURPOSE: GDI DirectX interface
|
||||
* FILE: win32ss/gdi/gdi32/misc/gdientry.c
|
||||
* PROGRAMERS: Alex Ionescu (alex@relsoft.net)
|
||||
* Magnus Olsen (magnus@greatlord.com)
|
||||
|
|
Loading…
Reference in a new issue