Assorted spelling fixes.
This commit is contained in:
parent
eed1b5209d
commit
f8e01efb3d
|
@ -607,7 +607,7 @@ unsigned int _mbbtombc(unsigned int c)
|
|||
((c >= 0x20 && c <=0x7e) ||(c >= 0xa1 && c <= 0xdf)))
|
||||
{
|
||||
/* FIXME: I can't get this function to return anything
|
||||
* different to what I pass it...
|
||||
* different from what I pass it...
|
||||
*/
|
||||
}
|
||||
return c; /* ASCII CP or no MB char */
|
||||
|
|
|
@ -495,7 +495,7 @@ static void test_RtlUniform(void)
|
|||
* MAXLONG (=0x7fffffff) is never returned, neither with the native function
|
||||
* nor with the simplified algorithm. In reality the native function and our
|
||||
* function return a random number distributed over [0..MAXLONG-1]. Note
|
||||
* that this is different to what native documentation states [0..MAXLONG].
|
||||
* that this is different from what native documentation states [0..MAXLONG].
|
||||
* Expressed with D.H. Lehmer's 1948 algorithm it looks like:
|
||||
*
|
||||
* seed = (seed * const_1 + const_2) % MAXLONG;
|
||||
|
|
|
@ -269,7 +269,7 @@ HRESULT WINAPI BindCtxImpl_RevokeObjectBound(IBindCtx* iface, IUnknown* punk)
|
|||
|
||||
TRACE("(%p,%p)\n",This,punk);
|
||||
|
||||
/* check if the object was registred or not */
|
||||
/* check if the object was registered or not */
|
||||
if (BindCtxImpl_GetObjectIndex(This,punk,NULL,&index)==S_FALSE)
|
||||
return MK_E_NOTBOUND;
|
||||
|
||||
|
|
|
@ -983,7 +983,7 @@ HRESULT WINAPI FileMonikerImpl_GetTimeOfLastChange(IMoniker* iface,
|
|||
|
||||
res= IRunningObjectTable_GetTimeOfLastChange(rot,iface,pFileTime);
|
||||
|
||||
if (FAILED(res)){ /* the moniker is not registred */
|
||||
if (FAILED(res)){ /* the moniker is not registered */
|
||||
|
||||
if (!GetFileAttributesExW(This->filePathName,GetFileExInfoStandard,&info))
|
||||
return MK_E_NOOBJECT;
|
||||
|
|
|
@ -263,7 +263,7 @@ BOOL HCR_GetDefaultIconFromGUIDW(REFIID riid, LPWSTR szDest, DWORD len, LPDWORD
|
|||
/***************************************************************************************
|
||||
* HCR_GetClassName [internal]
|
||||
*
|
||||
* Gets the name of a registred class
|
||||
* Gets the name of a registered class
|
||||
*/
|
||||
static const WCHAR swEmpty[] = {0};
|
||||
|
||||
|
|
|
@ -1077,7 +1077,7 @@ int WINAPI SHFileOperationW(LPSHFILEOPSTRUCTW lpFileOp)
|
|||
goto shfileop_normal;
|
||||
}
|
||||
|
||||
/* W98 Bug with FO_MOVE different to FO_COPY, better the same as FO_COPY */
|
||||
/* W98 Bug with FO_MOVE different from FO_COPY, better the same as FO_COPY */
|
||||
b_ToValid = ((b_SameTailName && b_SameRoot && (FO_COPY == FuncSwitch)) ||
|
||||
(b_SameTailName && !b_SameRoot) || (b_ToInvalidTail));
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ not exist in wcmd.\n"
|
|||
batch file.\n\
|
||||
\n\
|
||||
The label which is the target of a GOTO may be up to 255 characters\n\
|
||||
long but may not include spaces (this is different to other operating\n\
|
||||
long but may not include spaces (this is different from other operating\n\
|
||||
systems). If two or more identical labels exist in a batch file the\n\
|
||||
first one will always be executed. Attempting to GOTO a non-existent\n\
|
||||
label terminates the batch file execution.\n\
|
||||
|
|
|
@ -68,7 +68,7 @@ not exist in wcmd.\n"
|
|||
batch file.\n\
|
||||
\n\
|
||||
The label which is the target of a GOTO may be up to 255 characters\n\
|
||||
long but may not include spaces (this is different to other operating\n\
|
||||
long but may not include spaces (this is different from other operating\n\
|
||||
systems). If two or more identical labels exist in a batch file the\n\
|
||||
first one will always be executed. Attempting to GOTO a non-existent\n\
|
||||
label terminates the batch file execution.\n\
|
||||
|
|
|
@ -69,7 +69,7 @@ not exist in wcmd.\n"
|
|||
batch file.\n\
|
||||
\n\
|
||||
The label which is the target of a GOTO may be up to 255 characters\n\
|
||||
long but may not include spaces (this is different to other operating\n\
|
||||
long but may not include spaces (this is different from other operating\n\
|
||||
systems). If two or more identical labels exist in a batch file the\n\
|
||||
first one will always be executed. Attempting to GOTO a non-existent\n\
|
||||
label terminates the batch file execution.\n\
|
||||
|
|
Loading…
Reference in New Issue