Assorted spelling fixes.

oldstable
Francois Gouget 2004-04-28 00:24:44 +00:00 committed by Alexandre Julliard
parent c6ad91ba3c
commit 0345908a27
6 changed files with 11 additions and 11 deletions

View File

@ -343,7 +343,7 @@ SetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
* SetThreadToken [ADVAPI32.@]
*
* Assigns an 'impersonation token' to a thread so it can assume the
* security privledges of another thread or process. Can also remove
* security privileges of another thread or process. Can also remove
* a previously assigned token.
*
* PARAMS

View File

@ -638,7 +638,7 @@ inline static VOID IDirect3DVertexShaderImpl_GenerateProgramArbHW(IDirect3DVerte
/**
* First pass to determine what we need to declare:
* - Temporary variables
* - Adress variables
* - Address variables
*/
if (NULL != pToken) {
while (D3DVS_END() != *pToken) {
@ -739,7 +739,7 @@ inline static VOID IDirect3DVertexShaderImpl_GenerateProgramArbHW(IDirect3DVerte
for (i = 0; i < nUseAddressRegister; i++) {
sprintf(tmpLine, "ADDRESS A%ld;\n", i);
++lineNum;
TRACE_(d3d_hw_shader)("GL HW (%u, %u) : %s", lineNum, strlen(pgmStr), tmpLine); /* Dont add /n to this line as already in tmpLine */
TRACE_(d3d_hw_shader)("GL HW (%u, %u) : %s", lineNum, strlen(pgmStr), tmpLine); /* Don't add \n to this line as already in tmpLine */
strcat(pgmStr,tmpLine);
}
/* Due to the dynamic constants binding mechanism, we need to declare
@ -747,7 +747,7 @@ inline static VOID IDirect3DVertexShaderImpl_GenerateProgramArbHW(IDirect3DVerte
/* Mesa supports only 95 constants for VS1.X although we should have at least 96.
* Let's declare max constants minus one for now. */
sprintf(tmpLine, "PARAM C[%d] = { program.env[0..%d] };\n", numConstants-1, numConstants-2);
TRACE("GL HW (%u) : %s", strlen(pgmStr), tmpLine); /* Dont add /n to this line as already in tmpLine */
TRACE("GL HW (%u) : %s", strlen(pgmStr), tmpLine); /* Don't add \n to this line as already in tmpLine */
strcat(pgmStr, tmpLine);
++pToken;

View File

@ -385,11 +385,11 @@ BOOL WINAPI FPropContainsProp(LPSPropValue lpHaystack, LPSPropValue lpNeedle, UL
*
* PARAMS
* lpPropLeft [I] Left hand property to compare to lpPropRight
* ulOp [I] Comparason operator (RELOP_* enum from "mapidefs.h")
* ulOp [I] Comparison operator (RELOP_* enum from "mapidefs.h")
* lpPropRight [I] Right hand property to compare to lpPropLeft
*
* RETURNS
* TRUE, if the comparason is true, FALSE otherwise.
* TRUE, if the comparison is true, FALSE otherwise.
*/
BOOL WINAPI FPropCompareProp(LPSPropValue lpPropLeft, ULONG ulOp, LPSPropValue lpPropRight)
{
@ -402,7 +402,7 @@ BOOL WINAPI FPropCompareProp(LPSPropValue lpPropLeft, ULONG ulOp, LPSPropValue l
if (ulOp == RELOP_RE)
{
FIXME("Comparason operator RELOP_RE not yet implemented!\n");
FIXME("Comparison operator RELOP_RE not yet implemented!\n");
return FALSE;
}

View File

@ -330,7 +330,7 @@ ULONG WINAPI MNLS_lstrcpyW(LPWSTR lpszDest, LPCWSTR lpszSrc)
* Compare two Unicode strings.
*
* PARAMS
* dwCp [I] Copde page for the comparason
* dwCp [I] Code page for the comparison
* lpszLeft [I] First string to compare
* lpszRight [I] Second string to compare
*

View File

@ -316,7 +316,7 @@
</listitem>
<listitem>
<para>
Re-run the program with the WINEDEBUG enviroment variable <parameter>
Re-run the program with the WINEDEBUG environment variable <parameter>
WINEDEBUG=+relay</parameter> option (i.e., <command>WINEDEBUG=+relay
wine sol.exe</command>).
</para>

View File

@ -76,7 +76,7 @@
#define PR_PRIORITY PROP_TAG(PT_I4,0x26)
#define PR_ORIGIN_CHECK PROP_TAG(PT_BINARY,0x27)
#define PR_PROOF_OF_SUBMISSION_REQUESTED PROP_TAG(PT_BOOLEAN,0x28)
/* Whether a read reciept is desired */
/* Whether a read receipt is desired */
#define PR_READ_RECEIPT_REQUESTED PROP_TAG(PT_BOOLEAN,0x29)
/* Time a message was received */
#define PR_RECEIPT_TIME PROP_TAG(PT_SYSTIME,0x2A)
@ -111,7 +111,7 @@
#define PR_SUBJECT_PREFIX WINELIB_NAME_AW(PR_SUBJECT_PREFIX_)
#define PR_NON_RECEIPT_REASON PROP_TAG(PT_I4,0x3E)
#define PR_RECEIVED_BY_ENTRYID PROP_TAG(PT_BINARY,0x3F)
/* Recieved by: entry */
/* Received by: entry */
#define PR_RECEIVED_BY_NAME_W PROP_TAG(PT_UNICODE,0x40)
#define PR_RECEIVED_BY_NAME_A PROP_TAG(PT_STRING8,0x40)
#define PR_RECEIVED_BY_NAME WINELIB_NAME_AW(PR_RECEIVED_BY_NAME_)