Author: hbelusca
Date: Sat Apr 13 21:28:10 2013
New Revision: 58744
URL:
http://svn.reactos.org/svn/reactos?rev=58744&view=rev
Log:
[REACTOS]
Correct spelling of "receive" throughout the codebase.
Patch by andygui.
CORE-7062 #resolve #comment Fixed in revision r58744. Thanks :)
Modified:
trunk/reactos/base/applications/network/netstat/netstat.c
trunk/reactos/base/applications/network/tracert/tracert.c
trunk/reactos/base/applications/screensavers/3dtext/3dtext.c
trunk/reactos/base/services/tcpsvcs/discard.c
trunk/reactos/boot/freeldr/freeldr/include/comm.h
trunk/reactos/dll/cpl/intl/date.c
trunk/reactos/dll/cpl/intl/misc.c
trunk/reactos/dll/cpl/intl/setupreg.c
trunk/reactos/dll/cpl/timedate/ntpclient.c
trunk/reactos/dll/win32/advapi32/service/sctrl.c
trunk/reactos/drivers/base/kddll/kdserial.c
trunk/reactos/drivers/bus/acpi/cmbatt/cmbpnp.c
trunk/reactos/drivers/bus/acpi/compbatt/comppnp.c
trunk/reactos/include/ddk/ndiswan.h
trunk/reactos/lib/sdk/crt/time/ftime.c
trunk/reactos/lib/sdk/crt/time/futime.c
trunk/reactos/media/doc/winsta and desktops.txt
trunk/reactos/ntoskrnl/include/internal/kd.h
trunk/reactos/win32ss/include/ntuser.h
trunk/reactos/win32ss/user/ntuser/hotkey.c
trunk/reactos/win32ss/user/ntuser/monitor.c
Modified: trunk/reactos/base/applications/network/netstat/netstat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/network/…
==============================================================================
--- trunk/reactos/base/applications/network/netstat/netstat.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/network/netstat/netstat.c [iso-8859-1] Sat Apr 13
21:28:10 2013
@@ -259,13 +259,13 @@
if ((dwRetVal = GetIpStatistics(pIpStats)) == NO_ERROR)
{
_tprintf(_T("\nIPv4 Statistics\n\n"));
- _tprintf(_T(" %-34s = %lu\n"), _T("Packets Recieved"),
pIpStats->dwInReceives);
+ _tprintf(_T(" %-34s = %lu\n"), _T("Packets Received"),
pIpStats->dwInReceives);
_tprintf(_T(" %-34s = %lu\n"), _T("Received Header Errors"),
pIpStats->dwInHdrErrors);
_tprintf(_T(" %-34s = %lu\n"), _T("Received Address
Errors"), pIpStats->dwInAddrErrors);
_tprintf(_T(" %-34s = %lu\n"), _T("Datagrams Forwarded"),
pIpStats->dwForwDatagrams);
- _tprintf(_T(" %-34s = %lu\n"), _T("Unknown Protocols
Recieved"), pIpStats->dwInUnknownProtos);
+ _tprintf(_T(" %-34s = %lu\n"), _T("Unknown Protocols
Received"), pIpStats->dwInUnknownProtos);
_tprintf(_T(" %-34s = %lu\n"), _T("Received Packets
Discarded"), pIpStats->dwInDiscards);
- _tprintf(_T(" %-34s = %lu\n"), _T("Recieved Packets
Delivered"), pIpStats->dwInDelivers);
+ _tprintf(_T(" %-34s = %lu\n"), _T("Received Packets
Delivered"), pIpStats->dwInDelivers);
_tprintf(_T(" %-34s = %lu\n"), _T("Output Requests"),
pIpStats->dwOutRequests);
_tprintf(_T(" %-34s = %lu\n"), _T("Routing Discards"),
pIpStats->dwRoutingDiscards);
_tprintf(_T(" %-34s = %lu\n"), _T("Discarded Output
Packets"), pIpStats->dwOutDiscards);
@@ -343,7 +343,7 @@
_tprintf(_T(" %-35s = %lu\n"), _T("Failed Connection
Attempts"), pTcpStats->dwAttemptFails);
_tprintf(_T(" %-35s = %lu\n"), _T("Reset Connections"),
pTcpStats->dwEstabResets);
_tprintf(_T(" %-35s = %lu\n"), _T("Current Connections"),
pTcpStats->dwCurrEstab);
- _tprintf(_T(" %-35s = %lu\n"), _T("Segments Recieved"),
pTcpStats->dwInSegs);
+ _tprintf(_T(" %-35s = %lu\n"), _T("Segments Received"),
pTcpStats->dwInSegs);
_tprintf(_T(" %-35s = %lu\n"), _T("Segments Sent"),
pTcpStats->dwOutSegs);
_tprintf(_T(" %-35s = %lu\n"), _T("Segments Retransmitted"),
pTcpStats->dwRetransSegs);
}
@@ -363,9 +363,9 @@
if ((dwRetVal = GetUdpStatistics(pUdpStats)) == NO_ERROR)
{
_tprintf(_T("\nUDP Statistics for IPv4\n\n"));
- _tprintf(_T(" %-21s = %lu\n"), _T("Datagrams Recieved"),
pUdpStats->dwInDatagrams);
+ _tprintf(_T(" %-21s = %lu\n"), _T("Datagrams Received"),
pUdpStats->dwInDatagrams);
_tprintf(_T(" %-21s = %lu\n"), _T("No Ports"),
pUdpStats->dwNoPorts);
- _tprintf(_T(" %-21s = %lu\n"), _T("Recieve Errors"),
pUdpStats->dwInErrors);
+ _tprintf(_T(" %-21s = %lu\n"), _T("Receive Errors"),
pUdpStats->dwInErrors);
_tprintf(_T(" %-21s = %lu\n"), _T("Datagrams Sent"),
pUdpStats->dwOutDatagrams);
}
else
Modified: trunk/reactos/base/applications/network/tracert/tracert.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/network/…
==============================================================================
--- trunk/reactos/base/applications/network/tracert/tracert.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/network/tracert/tracert.c [iso-8859-1] Sat Apr 13
21:28:10 2013
@@ -343,7 +343,7 @@
if (iSockRet != SOCKET_ERROR)
{
- /* get time packet was recieved */
+ /* get time packet was received */
pInfo->lTimeEnd = GetTime(pInfo);
DebugPrint(_T("reveived %d bytes\n"), iSockRet);
bRet = TRUE;
@@ -362,7 +362,7 @@
{
unsigned short header_len = pInfo->RecvPacket->h_len * 4;
- /* cast the recieved packet into an ECHO reply and a TTL Exceed and check the ID*/
+ /* cast the received packet into an ECHO reply and a TTL Exceed and check the ID*/
ECHO_REPLY_HEADER *IcmpHdr = (ECHO_REPLY_HEADER *)((char*)pInfo->RecvPacket +
header_len);
/* Make sure the reply is ok */
@@ -426,7 +426,7 @@
{
INT iHopCount = 1; // hop counter. default max is 30
BOOL bFoundTarget = FALSE; // Have we reached our destination yet
- INT iRecieveReturn; // RecieveReturn return value
+ INT iReceiveReturn; // ReceiveReturn return value
PECHO_REPLY_HEADER icmphdr;
INT iTTL = 1;
@@ -470,14 +470,14 @@
if (SendPacket(pInfo) != SOCKET_ERROR)
{
- BOOL bAwaitPacket = FALSE; // indicates whether we have recieved a
good packet
+ BOOL bAwaitPacket = FALSE; // indicates whether we have received a
good packet
do
{
/* Receive replies until we get a successful read, or a fatal
error */
- if ((iRecieveReturn = ReceivePacket(pInfo)) < 0)
+ if ((iReceiveReturn = ReceivePacket(pInfo)) < 0)
{
- /* FIXME: consider moving this into RecievePacket */
+ /* FIXME: consider moving this into ReceivePacket */
/* check the seq num in the packet, if it's bad wait for
another */
WORD hdrLen = pInfo->RecvPacket->h_len * 4;
icmphdr = (ECHO_REPLY_HEADER
*)((char*)&pInfo->RecvPacket + hdrLen);
@@ -488,7 +488,7 @@
}
}
- if (iRecieveReturn)
+ if (iReceiveReturn)
{
if (DecodeResponse(pInfo) < 0)
bAwaitPacket = TRUE;
Modified: trunk/reactos/base/applications/screensavers/3dtext/3dtext.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/screensa…
==============================================================================
--- trunk/reactos/base/applications/screensavers/3dtext/3dtext.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/screensavers/3dtext/3dtext.c [iso-8859-1] Sat Apr 13
21:28:10 2013
@@ -75,7 +75,7 @@
0.0f, // Deviation From The True Outlines
0.2f, // Font Thickness In The Z Direction
WGL_FONT_POLYGONS, // Use Polygons, Not Lines
- gmf); // Address Of Buffer To Recieve Data
+ gmf); // Address Of Buffer To Receive Data
// Calculate the string extent
for (i = 0; i < _tcslen(m_Text); i++)
Modified: trunk/reactos/base/services/tcpsvcs/discard.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/tcpsvcs/disc…
==============================================================================
--- trunk/reactos/base/services/tcpsvcs/discard.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/tcpsvcs/discard.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -2,7 +2,7 @@
* PROJECT: ReactOS simple TCP/IP services
* LICENSE: GPL - See COPYING in the top level directory
* FILE: /base/services/tcpsvcs/discard.c
- * PURPOSE: Recieves input from a client and discards it
+ * PURPOSE: Receives input from a client and discards it
* COPYRIGHT: Copyright 2005 - 2008 Ged Murphy <gedmurphy(a)reactos.org>
*
*/
@@ -12,7 +12,7 @@
#define BUFSIZE 1024
static BOOL
-RecieveIncomingPackets(SOCKET sock)
+ReceiveIncomingPackets(SOCKET sock)
{
CHAR readBuffer[BUFSIZE];
INT readBytes;
@@ -46,9 +46,9 @@
DWORD retVal = 0;
SOCKET sock = (SOCKET)sock_;
- if (!RecieveIncomingPackets(sock))
+ if (!ReceiveIncomingPackets(sock))
{
- LogEvent(L"Discard: RecieveIncomingPackets failed", 0, 0, LOG_FILE);
+ LogEvent(L"Discard: ReceiveIncomingPackets failed", 0, 0, LOG_FILE);
retVal = 1;
}
Modified: trunk/reactos/boot/freeldr/freeldr/include/comm.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/comm.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/comm.h [iso-8859-1] Sat Apr 13 21:28:10
2013
@@ -22,7 +22,7 @@
#pragma once
BOOLEAN Rs232PortInitialize(ULONG ComPort, ULONG BaudRate);
-BOOLEAN Rs232PortGetByte(PUCHAR ByteRecieved);
-// BOOLEAN Rs232PortPollByte(PUCHAR ByteRecieved);
+BOOLEAN Rs232PortGetByte(PUCHAR ByteReceived);
+// BOOLEAN Rs232PortPollByte(PUCHAR ByteReceived);
VOID Rs232PortPutByte(UCHAR ByteToSend);
BOOLEAN Rs232PortInUse(PUCHAR Base);
Modified: trunk/reactos/dll/cpl/intl/date.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/intl/date.c?rev=58…
==============================================================================
--- trunk/reactos/dll/cpl/intl/date.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/intl/date.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -79,7 +79,7 @@
return pszFoundSep;
}
-/* Replace given template in source string with string to replace and return recieved
string */
+/* Replace given template in source string with string to replace and return received
string */
/* Setted up short date separator to registry */
Modified: trunk/reactos/dll/cpl/intl/misc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/intl/misc.c?rev=58…
==============================================================================
--- trunk/reactos/dll/cpl/intl/misc.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/intl/misc.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -111,7 +111,7 @@
return pszDestStr;
}
-/* Replace given template in source string with string to replace and return recieved
string */
+/* Replace given template in source string with string to replace and return received
string */
LPTSTR
ReplaceSubStr(LPCTSTR szSourceStr,
LPCTSTR szStrToReplace,
Modified: trunk/reactos/dll/cpl/intl/setupreg.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/intl/setupreg.c?re…
==============================================================================
--- trunk/reactos/dll/cpl/intl/setupreg.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/intl/setupreg.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -125,7 +125,7 @@
return pszDestStr;
}
-/* Replace given template in source string with string to replace and return recieved
string */
+/* Replace given template in source string with string to replace and return received
string */
TCHAR*
ReplaceSubStr(const TCHAR *szSourceStr,
const TCHAR *szStrToReplace,
Modified: trunk/reactos/dll/cpl/timedate/ntpclient.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/timedate/ntpclient…
==============================================================================
--- trunk/reactos/dll/cpl/timedate/ntpclient.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/timedate/ntpclient.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -99,7 +99,7 @@
static ULONG
-RecieveData(PINFO pInfo)
+ReceiveData(PINFO pInfo)
{
TIMEVAL timeVal;
FD_SET readFDS;
@@ -164,7 +164,7 @@
{
if (SendData(pInfo))
{
- ulTime = RecieveData(pInfo);
+ ulTime = ReceiveData(pInfo);
}
}
Modified: trunk/reactos/dll/win32/advapi32/service/sctrl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/advapi32/service…
==============================================================================
--- trunk/reactos/dll/win32/advapi32/service/sctrl.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/advapi32/service/sctrl.c [iso-8859-1] Sat Apr 13 21:28:10
2013
@@ -548,14 +548,14 @@
{
case SERVICE_CONTROL_START_SHARE:
case SERVICE_CONTROL_START_OWN:
- TRACE("Start command - recieved SERVICE_CONTROL_START\n");
+ TRACE("Start command - received SERVICE_CONTROL_START\n");
dwError = ScStartService(lpService, ControlPacket);
if (dwError == ERROR_SUCCESS)
dwRunningServices++;
break;
case SERVICE_CONTROL_STOP:
- TRACE("Stop command - recieved SERVICE_CONTROL_STOP\n");
+ TRACE("Stop command - received SERVICE_CONTROL_STOP\n");
dwError = ScControlService(lpService, ControlPacket);
if (dwError == ERROR_SUCCESS)
dwRunningServices--;
Modified: trunk/reactos/drivers/base/kddll/kdserial.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/base/kddll/kdseria…
==============================================================================
--- trunk/reactos/drivers/base/kddll/kdserial.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/base/kddll/kdserial.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -31,7 +31,7 @@
/******************************************************************************
* \name KdpReceiveBuffer
- * \brief Recieves data from the KD port and fills a buffer.
+ * \brief Receives data from the KD port and fills a buffer.
* \param Buffer Pointer to a buffer that receives the data.
* \param Size Size of data to receive in bytes.
* \return KDP_PACKET_RECEIVED if successful.
@@ -64,7 +64,7 @@
/******************************************************************************
* \name KdpReceivePacketLeader
- * \brief Recieves a packet leadr from the KD port.
+ * \brief Receives a packet leadr from the KD port.
* \param PacketLeader Pointer to an ULONG that receives the packet leader.
* \return KDP_PACKET_RECEIVED if successful.
* KDP_PACKET_TIMEOUT if the receive timed out.
Modified: trunk/reactos/drivers/bus/acpi/cmbatt/cmbpnp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/bus/acpi/cmbatt/cm…
==============================================================================
--- trunk/reactos/drivers/bus/acpi/cmbatt/cmbpnp.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/bus/acpi/cmbatt/cmbpnp.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -369,7 +369,7 @@
/* Don't do anything, but this is strange since it's already
removed */
Status = STATUS_SUCCESS;
if (CmBattDebug & 4)
- DbgPrint("CmBattPnpDispatch: Recieved two consecutive
QUERY_REMOVE requests.\n");
+ DbgPrint("CmBattPnpDispatch: Received two consecutive
QUERY_REMOVE requests.\n");
}
else
{
Modified: trunk/reactos/drivers/bus/acpi/compbatt/comppnp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/bus/acpi/compbatt/…
==============================================================================
--- trunk/reactos/drivers/bus/acpi/compbatt/comppnp.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/bus/acpi/compbatt/comppnp.c [iso-8859-1] Sat Apr 13 21:28:10
2013
@@ -18,7 +18,7 @@
IN PIRP Irp)
{
PCOMPBATT_DEVICE_EXTENSION DeviceExtension = DeviceObject->DeviceExtension;
- if (CompBattDebug & 1) DbgPrint("CompBatt: PowerDispatch recieved power
IRP.\n");
+ if (CompBattDebug & 1) DbgPrint("CompBatt: PowerDispatch received power
IRP.\n");
/* Start the next IRP */
PoStartNextPowerIrp(Irp);
Modified: trunk/reactos/include/ddk/ndiswan.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ndiswan.h?rev=…
==============================================================================
--- trunk/reactos/include/ddk/ndiswan.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ndiswan.h [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -228,10 +228,10 @@
OUT ULONG BytesReceivedUncompressed;
OUT ULONG BytesTransmittedCompressed;
OUT ULONG BytesReceivedCompressed;
- OUT ULONG TunnelPacketsRecieved;
- OUT ULONG TunnelRecievePacketsPending;
+ OUT ULONG TunnelPacketsReceived;
+ OUT ULONG TunnelReceivePacketsPending;
OUT ULONG TunnelPacketsIndicatedUp;
- OUT ULONG TunnelRecievePacketsRejected;
+ OUT ULONG TunnelReceivePacketsRejected;
OUT ULONG TunnelPacketsSent;
OUT ULONG TunnelPacketsSentComplete;
OUT ULONG TunnelTransmitPacketsPending;
@@ -317,10 +317,10 @@
OUT ULONG BytesReceivedUncompressed;
OUT ULONG BytesTransmittedCompressed;
OUT ULONG BytesReceivedCompressed;
- OUT ULONG TunnelPacketsRecieved;
- OUT ULONG TunnelRecievePacketsPending;
+ OUT ULONG TunnelPacketsReceived;
+ OUT ULONG TunnelReceivePacketsPending;
OUT ULONG TunnelPacketsIndicatedUp;
- OUT ULONG TunnelRecievePacketsRejected;
+ OUT ULONG TunnelReceivePacketsRejected;
OUT ULONG TunnelPacketsSent;
OUT ULONG TunnelPacketsSentComplete;
OUT ULONG TunnelTransmitPacketsPending;
Modified: trunk/reactos/lib/sdk/crt/time/ftime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ftime.c?r…
==============================================================================
--- trunk/reactos/lib/sdk/crt/time/ftime.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/time/ftime.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -13,7 +13,7 @@
* \name _ftime_s
* \brief Get the current time.
* \param [out] ptimeb Pointer to a structure of type struct _timeb that
- * recieves the current time.
+ * receives the current time.
* \sa
http://msdn.microsoft.com/en-us/library/95e68951.aspx
*/
errno_t
@@ -45,7 +45,7 @@
* \name _ftime
* \brief Get the current time.
* \param [out] ptimeb Pointer to a structure of type struct _timeb that
- * recieves the current time.
+ * receives the current time.
* \note This function is for compatability and simply calls the secure
* version _ftime_s().
* \sa
http://msdn.microsoft.com/en-us/library/z54t9z5f.aspx
Modified: trunk/reactos/lib/sdk/crt/time/futime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/futime.c?…
==============================================================================
--- trunk/reactos/lib/sdk/crt/time/futime.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/time/futime.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -46,7 +46,7 @@
* \name _futime
* \brief Set a file's modification time.
* \param [out] ptimeb Pointer to a structure of type struct _timeb that
- * recieves the current time.
+ * receives the current time.
* \sa
http://msdn.microsoft.com/en-us/library/95e68951.aspx
*/
int
Modified: trunk/reactos/media/doc/winsta and desktops.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/winsta%20and%20d…
==============================================================================
--- trunk/reactos/media/doc/winsta and desktops.txt [iso-8859-1] (original)
+++ trunk/reactos/media/doc/winsta and desktops.txt [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -32,7 +32,7 @@
-The one-and-only interactive WinSta.
-No other winsta can be visible/active.
--Only WinSta0 can recieve input.
+-Only WinSta0 can receive input.
-All other WinSta's are invisible/non-interactive WinStas.
What good is a invisible WinSta? Its used for running services in thus services cant
Modified: trunk/reactos/ntoskrnl/include/internal/kd.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/kd.h [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/include/internal/kd.h [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -42,13 +42,13 @@
BOOLEAN
NTAPI
KdPortGetByte(
- PUCHAR ByteRecieved);
+ PUCHAR ByteReceived);
BOOLEAN
NTAPI
KdPortGetByteEx(
PKD_PORT_INFORMATION PortInformation,
- PUCHAR ByteRecieved);
+ PUCHAR ByteReceived);
VOID
NTAPI
Modified: trunk/reactos/win32ss/include/ntuser.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/include/ntuser.h?r…
==============================================================================
--- trunk/reactos/win32ss/include/ntuser.h [iso-8859-1] (original)
+++ trunk/reactos/win32ss/include/ntuser.h [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -514,8 +514,8 @@
#define WNDS_HASPALETTE 0x00200000
#define WNDS_PAINTNOTPROCESSED 0x00400000
#define WNDS_SYNCPAINTPENDING 0x00800000
-#define WNDS_RECIEVEDQUERYSUSPENDMSG 0x01000000
-#define WNDS_RECIEVEDSUSPENDMSG 0x02000000
+#define WNDS_RECEIVEDQUERYSUSPENDMSG 0x01000000
+#define WNDS_RECEIVEDSUSPENDMSG 0x02000000
#define WNDS_TOGGLETOPMOST 0x04000000
#define WNDS_REDRAWIFHUNG 0x08000000
#define WNDS_REDRAWFRAMEIFHUNG 0x10000000
Modified: trunk/reactos/win32ss/user/ntuser/hotkey.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/hotkey…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/hotkey.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/hotkey.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -8,8 +8,8 @@
/*
* FIXME: Hotkey notifications are triggered by keyboard input (physical or
programatically)
- * and since only desktops on WinSta0 can recieve input in seems very wrong to allow
- * windows/threads on destops not belonging to WinSta0 to set hotkeys (recieve
notifications).
+ * and since only desktops on WinSta0 can receive input in seems very wrong to allow
+ * windows/threads on destops not belonging to WinSta0 to set hotkeys (receive
notifications).
* -- Gunnar
*/
Modified: trunk/reactos/win32ss/user/ntuser/monitor.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/monito…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/monitor.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/monitor.c [iso-8859-1] Sat Apr 13 21:28:10 2013
@@ -673,7 +673,7 @@
* from MONITORINFO will be filled.
*
* pDevice
- * Pointer to a UNICODE_STRING which will recieve the device's name. The
+ * Pointer to a UNICODE_STRING which will receive the device's name. The
* length should be CCHDEVICENAME
* Can be NULL
*