Assorted spelling fixes.

oldstable
Francois Gouget 2008-11-23 20:53:43 +01:00 committed by Alexandre Julliard
parent 8b15fa4b2a
commit 9c5e97aa71
10 changed files with 31 additions and 31 deletions

View File

@ -44,7 +44,7 @@ typedef struct tagFD16_PRIVATE
/************************************************************************
* FD16_MapOfnStruct16 [internal]
* map a 16 bits structure to an Unicode one
* map a 16 bits structure to a Unicode one
*/
static void FD16_MapOfnStruct16(const OPENFILENAME16 *ofn16, LPOPENFILENAMEW ofnW, BOOL open)
{

View File

@ -692,7 +692,7 @@ static LPWSTR FD31_DupToW(LPCSTR str, DWORD size)
/************************************************************************
* FD31_MapOfnStructA [internal]
* map a 32 bits Ansi structure to an Unicode one
* map a 32 bits Ansi structure to a Unicode one
*/
void FD31_MapOfnStructA(const OPENFILENAMEA *ofnA, LPOPENFILENAMEW ofnW, BOOL open)
{

View File

@ -864,7 +864,7 @@ static BOOL symt_enum_locals(struct process* pcs, const char* mask,
/******************************************************************
* copy_symbolW
*
* Helper for transforming an ANSI symbol info into an UNICODE one.
* Helper for transforming an ANSI symbol info into a UNICODE one.
* Assume that MaxNameLen is the same for both version (A & W).
*/
void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si)

View File

@ -347,7 +347,7 @@ void WINAPI RtlCopyUnicodeString( UNICODE_STRING *dst, const UNICODE_STRING *src
/**************************************************************************
* RtlDuplicateUnicodeString (NTDLL.@)
*
* Duplicates an unicode string.
* Duplicates a unicode string.
*
* RETURNS
* Success: STATUS_SUCCESS. destination contains the duplicated unicode string.
@ -663,7 +663,7 @@ WCHAR WINAPI RtlAnsiCharToUnicodeChar(LPSTR *ansi)
/**************************************************************************
* RtlAnsiStringToUnicodeString (NTDLL.@)
*
* Converts an ansi string to an unicode string.
* Converts an ansi string to a unicode string.
*
* RETURNS
* Success: STATUS_SUCCESS. uni contains the converted string
@ -700,7 +700,7 @@ NTSTATUS WINAPI RtlAnsiStringToUnicodeString(
/**************************************************************************
* RtlOemStringToUnicodeString (NTDLL.@)
*
* Converts an oem string to an unicode string.
* Converts an oem string to a unicode string.
*
* RETURNS
* Success: STATUS_SUCCESS. uni contains the converted string
@ -737,7 +737,7 @@ NTSTATUS WINAPI RtlOemStringToUnicodeString(
/**************************************************************************
* RtlUnicodeStringToAnsiString (NTDLL.@)
*
* Converts an unicode string to an ansi string.
* Converts a unicode string to an ansi string.
*
* RETURNS
* Success: STATUS_SUCCESS. ansi contains the converted string
@ -962,7 +962,7 @@ void WINAPI RtlUpperString( STRING *dst, const STRING *src )
/**************************************************************************
* RtlUpcaseUnicodeChar (NTDLL.@)
*
* Converts an Unicode character to uppercase.
* Converts a Unicode character to uppercase.
*
* PARAMS
* wch [I] Character to convert
@ -979,7 +979,7 @@ WCHAR WINAPI RtlUpcaseUnicodeChar( WCHAR wch )
/**************************************************************************
* RtlDowncaseUnicodeChar (NTDLL.@)
*
* Converts an Unicode character to lowercase.
* Converts a Unicode character to lowercase.
*
* PARAMS
* wch [I] Character to convert
@ -996,7 +996,7 @@ WCHAR WINAPI RtlDowncaseUnicodeChar(WCHAR wch)
/**************************************************************************
* RtlUpcaseUnicodeString (NTDLL.@)
*
* Converts an Unicode string to uppercase.
* Converts a Unicode string to uppercase.
*
* PARAMS
* dest [O] Destination for converted string
@ -1035,7 +1035,7 @@ NTSTATUS WINAPI RtlUpcaseUnicodeString( UNICODE_STRING *dest,
/**************************************************************************
* RtlDowncaseUnicodeString (NTDLL.@)
*
* Converts an Unicode string to lowercase.
* Converts a Unicode string to lowercase.
*
* PARAMS
* dest [O] Destination for converted string
@ -1499,7 +1499,7 @@ NTSTATUS WINAPI RtlAppendUnicodeStringToString(
/**************************************************************************
* RtlFindCharInUnicodeString (NTDLL.@)
*
* Searches for one of several unicode characters in an unicode string.
* Searches for one of several unicode characters in a unicode string.
*
* RETURNS
* Success: STATUS_SUCCESS. pos contains the position after the character found.
@ -1848,7 +1848,7 @@ NTSTATUS WINAPI RtlIntegerToChar(
/**************************************************************************
* RtlUnicodeStringToInteger (NTDLL.@)
*
* Converts an unicode string into its integer equivalent.
* Converts a unicode string into its integer equivalent.
*
* RETURNS
* Success: STATUS_SUCCESS. value contains the converted number

View File

@ -305,7 +305,7 @@ INT __cdecl NTDLL_iswctype( WCHAR wc, WCHAR wct )
/*********************************************************************
* iswalpha (NTDLL.@)
*
* Checks if an unicode char wc is a letter
* Checks if a unicode char wc is a letter
*
* RETURNS
* TRUE: The unicode char wc is a letter.
@ -320,7 +320,7 @@ INT __cdecl NTDLL_iswalpha( WCHAR wc )
/*********************************************************************
* iswdigit (NTDLL.@)
*
* Checks if an unicode char wc is a digit
* Checks if a unicode char wc is a digit
*
* RETURNS
* TRUE: The unicode char wc is a digit.
@ -335,7 +335,7 @@ INT __cdecl NTDLL_iswdigit( WCHAR wc )
/*********************************************************************
* iswlower (NTDLL.@)
*
* Checks if an unicode char wc is a lower case letter
* Checks if a unicode char wc is a lower case letter
*
* RETURNS
* TRUE: The unicode char wc is a lower case letter.
@ -350,7 +350,7 @@ INT __cdecl NTDLL_iswlower( WCHAR wc )
/*********************************************************************
* iswspace (NTDLL.@)
*
* Checks if an unicode char wc is a white space character
* Checks if a unicode char wc is a white space character
*
* RETURNS
* TRUE: The unicode char wc is a white space character.
@ -365,7 +365,7 @@ INT __cdecl NTDLL_iswspace( WCHAR wc )
/*********************************************************************
* iswxdigit (NTDLL.@)
*
* Checks if an unicode char wc is an extended digit
* Checks if a unicode char wc is an extended digit
*
* RETURNS
* TRUE: The unicode char wc is an extended digit.
@ -380,7 +380,7 @@ INT __cdecl NTDLL_iswxdigit( WCHAR wc )
/*********************************************************************
* _ultow (NTDLL.@)
*
* Converts an unsigned long integer to an unicode string.
* Converts an unsigned long integer to a unicode string.
*
* RETURNS
* Always returns str.
@ -423,7 +423,7 @@ LPWSTR __cdecl _ultow(
/*********************************************************************
* _ltow (NTDLL.@)
*
* Converts a long integer to an unicode string.
* Converts a long integer to a unicode string.
*
* RETURNS
* Always returns str.
@ -481,7 +481,7 @@ LPWSTR __cdecl _ltow(
/*********************************************************************
* _itow (NTDLL.@)
*
* Converts an integer to an unicode string.
* Converts an integer to a unicode string.
*
* RETURNS
* Always returns str.
@ -509,7 +509,7 @@ LPWSTR __cdecl _itow(
/*********************************************************************
* _ui64tow (NTDLL.@)
*
* Converts a large unsigned integer to an unicode string.
* Converts a large unsigned integer to a unicode string.
*
* RETURNS
* Always returns str.
@ -557,7 +557,7 @@ LPWSTR __cdecl _ui64tow(
/*********************************************************************
* _i64tow (NTDLL.@)
*
* Converts a large integer to an unicode string.
* Converts a large integer to a unicode string.
*
* RETURNS
* Always returns str.
@ -624,7 +624,7 @@ LPWSTR __cdecl _i64tow(
/*********************************************************************
* _wtol (NTDLL.@)
*
* Converts an unicode string to a long integer.
* Converts a unicode string to a long integer.
*
* PARAMS
* str [I] Wstring to be converted
@ -665,7 +665,7 @@ LONG __cdecl _wtol( LPCWSTR str )
/*********************************************************************
* _wtoi (NTDLL.@)
*
* Converts an unicode string to an integer.
* Converts a unicode string to an integer.
*
* PARAMS
* str [I] Wstring to be converted
@ -687,7 +687,7 @@ int __cdecl _wtoi( LPCWSTR str )
/*********************************************************************
* _wtoi64 (NTDLL.@)
*
* Converts an unicode string to a large integer.
* Converts a unicode string to a large integer.
*
* PARAMS
* str [I] Wstring to be converted

View File

@ -3718,7 +3718,7 @@ DWORD WINAPI SHSendMessageBroadcastW(UINT uMsg, WPARAM wParam, LPARAM lParam)
/*************************************************************************
* @ [SHLWAPI.436]
*
* Convert an Unicode string CLSID into a CLSID.
* Convert a Unicode string CLSID into a CLSID.
*
* PARAMS
* idstr [I] string containing a CLSID in text form

View File

@ -1501,7 +1501,7 @@ BOOL WINAPI mciExecute(LPCSTR lpstrCommand)
/**************************************************************************
* mciLoadCommandResource [WINMM.@]
*
* Strangely, this function only exists as an UNICODE one.
* Strangely, this function only exists as a UNICODE one.
*/
UINT WINAPI mciLoadCommandResource(HINSTANCE hInst, LPCWSTR resNameW, UINT type)
{

View File

@ -2798,7 +2798,7 @@ static HKEY WINSPOOL_OpenDriverReg( LPCVOID pEnvironment, BOOL unicode)
(unicode) ? debugstr_w(pEnvironment) : debugstr_a(pEnvironment), unicode);
if (!pEnvironment || unicode) {
/* pEnvironment was NULL or an Unicode-String: use it direct */
/* pEnvironment was NULL or a Unicode-String: use it direct */
env = validate_envW(pEnvironment);
}
else

View File

@ -189,7 +189,7 @@ typedef struct _XINPUT_VIBRATION {
/*
* Defines the structure for what kind of abilities the joystick has
* such abilites are things such as if the joystick has the ability
* to send and recieve audio, if the joystick is infact a driving
* to send and receive audio, if the joystick is infact a driving
* wheel or perhaps if the joystick is some kind of dance pad or
* guitar.
*/

View File

@ -296,7 +296,7 @@ can be:
.IP s
an ASCII string
.IP u
an Unicode UTF16 string
a UTF16 Unicode string
.IP i
instructions (disassemble)
.IP x