Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0345908a
Commit
0345908a
authored
Apr 28, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
c6ad91ba
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
security.c
dlls/advapi32/security.c
+1
-1
shader.c
dlls/d3d8/shader.c
+3
-3
prop.c
dlls/mapi32/prop.c
+3
-3
util.c
dlls/mapi32/util.c
+1
-1
bugs.sgml
documentation/bugs.sgml
+1
-1
mapitags.h
include/mapitags.h
+2
-2
No files found.
dlls/advapi32/security.c
View file @
0345908a
...
...
@@ -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 priv
led
ges of another thread or process. Can also remove
* security priv
ile
ges of another thread or process. Can also remove
* a previously assigned token.
*
* PARAMS
...
...
dlls/d3d8/shader.c
View file @
0345908a
...
...
@@ -638,7 +638,7 @@ inline static VOID IDirect3DVertexShaderImpl_GenerateProgramArbHW(IDirect3DVerte
/**
* First pass to determine what we need to declare:
* - Temporary variables
* - Adress variables
* - Ad
d
ress 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
);
/* Don
t 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
);
/* Don
t 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
;
...
...
dlls/mapi32/prop.c
View file @
0345908a
...
...
@@ -385,11 +385,11 @@ BOOL WINAPI FPropContainsProp(LPSPropValue lpHaystack, LPSPropValue lpNeedle, UL
*
* PARAMS
* lpPropLeft [I] Left hand property to compare to lpPropRight
* ulOp [I] Compar
a
son operator (RELOP_* enum from "mapidefs.h")
* ulOp [I] Compar
i
son operator (RELOP_* enum from "mapidefs.h")
* lpPropRight [I] Right hand property to compare to lpPropLeft
*
* RETURNS
* TRUE, if the compar
a
son is true, FALSE otherwise.
* TRUE, if the compar
i
son 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
(
"Compar
a
son operator RELOP_RE not yet implemented!
\n
"
);
FIXME
(
"Compar
i
son operator RELOP_RE not yet implemented!
\n
"
);
return
FALSE
;
}
...
...
dlls/mapi32/util.c
View file @
0345908a
...
...
@@ -330,7 +330,7 @@ ULONG WINAPI MNLS_lstrcpyW(LPWSTR lpszDest, LPCWSTR lpszSrc)
* Compare two Unicode strings.
*
* PARAMS
* dwCp [I] Co
pde page for the compara
son
* dwCp [I] Co
de page for the compari
son
* lpszLeft [I] First string to compare
* lpszRight [I] Second string to compare
*
...
...
documentation/bugs.sgml
View file @
0345908a
...
...
@@ -316,7 +316,7 @@
</listitem>
<listitem>
<para>
Re-run the program with the WINEDEBUG enviroment variable <parameter>
Re-run the program with the WINEDEBUG enviro
n
ment variable <parameter>
WINEDEBUG=+relay</parameter> option (i.e., <command>WINEDEBUG=+relay
wine sol.exe</command>).
</para>
...
...
include/mapitags.h
View file @
0345908a
...
...
@@ -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 rec
ie
pt is desired */
/* Whether a read rec
ei
pt 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)
/* Rec
ie
ved by: entry */
/* Rec
ei
ved 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_)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment