Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
42a61d7e
Commit
42a61d7e
authored
May 06, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
May 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
53f2cb83
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
25 additions
and
25 deletions
+25
-25
header.c
dlls/comctl32/tests/header.c
+1
-1
ctapi32.c
dlls/ctapi32/ctapi32.c
+1
-1
ddraw.c
dlls/ddraw/ddraw.c
+1
-1
device.c
dlls/ddraw/device.c
+1
-1
surface.c
dlls/ddraw/surface.c
+1
-1
device.c
dlls/dinput/device.c
+1
-1
tempotrack.c
dlls/dmime/tempotrack.c
+1
-1
nsiface.idl
dlls/mshtml/nsiface.idl
+3
-3
msi.c
dlls/msi/msi.c
+1
-1
moniker.c
dlls/ole32/moniker.c
+1
-1
avisplit.c
dlls/quartz/avisplit.c
+1
-1
editor.c
dlls/riched20/tests/editor.c
+4
-4
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+1
-1
device.c
dlls/wined3d/device.c
+1
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+2
-2
async.c
dlls/ws2_32/async.c
+1
-1
np_server.c
programs/rpcss/np_server.c
+1
-1
winemaker
tools/winemaker
+1
-1
parser.y
tools/wrc/parser.y
+1
-1
No files found.
dlls/comctl32/tests/header.c
View file @
42a61d7e
...
...
@@ -1010,7 +1010,7 @@ static void test_hdm_filterMessages(HWND hParent)
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
todo_wine
{
/* msdn incorrecly states that return value
/* msdn incorrec
t
ly states that return value
* is the index of the filter control being
* modified. The sendMessage here should
* return previous filter timeout value
...
...
dlls/ctapi32/ctapi32.c
View file @
42a61d7e
...
...
@@ -77,7 +77,7 @@ static int load_functions(void) {
TRACE
(
"Successfully loaded '%s'
\n
"
,
soname
);
}
else
{
MESSAGE
(
"Wine cannot find any us
e
able hardware library, ctapi32.dll not working.
\n
"
);
MESSAGE
(
"Wine cannot find any usable hardware library, ctapi32.dll not working.
\n
"
);
MESSAGE
(
"Please create the key
\"
HKEY_CURRENT_USER
\\
Software
\\
Wine
\\
ctapi32
\"
in your registry
\n
"
);
MESSAGE
(
"and set the value
\"
library
\"
to your library name (e.g.
\"
libctapi-cyberjack.so.1
\"
or
\"
/usr/lib/readers/libctapi.so
\"
).
\n
"
);
return
1
;
...
...
dlls/ddraw/ddraw.c
View file @
42a61d7e
...
...
@@ -2034,7 +2034,7 @@ IDirectDrawImpl_CreateNewSurface(IDirectDrawImpl *This,
/* Anno 1602 stores the pitch right after surface creation, so make sure it's there.
* I can't LockRect() the surface here because if OpenGL surfaces are in use, the
* WineD3DDevice might not be us
e
able for 3D yet, so an extra method was created.
* WineD3DDevice might not be usable for 3D yet, so an extra method was created.
* TODO: Test other fourcc formats
*/
if
(
Format
==
WINED3DFMT_DXT1
||
Format
==
WINED3DFMT_DXT2
||
Format
==
WINED3DFMT_DXT3
||
...
...
dlls/ddraw/device.c
View file @
42a61d7e
...
...
@@ -335,7 +335,7 @@ IDirect3DDeviceImpl_7_Release(IDirect3DDevice7 *iface)
/* Release the WineD3DDevice. This won't destroy it */
if
(
IWineD3DDevice_Release
(
This
->
wineD3DDevice
)
<=
0
)
{
ERR
(
" (%p) The wineD3D device %p was destroyed unexpect
ade
ly. Prepare for trouble
\n
"
,
This
,
This
->
wineD3DDevice
);
ERR
(
" (%p) The wineD3D device %p was destroyed unexpect
ed
ly. Prepare for trouble
\n
"
,
This
,
This
->
wineD3DDevice
);
}
/* The texture handles should be unset by now, but there might be some bits
...
...
dlls/ddraw/surface.c
View file @
42a61d7e
...
...
@@ -1707,7 +1707,7 @@ IDirectDrawSurfaceImpl_Initialize(IDirectDrawSurface7 *iface,
* Checks if the surface is lost
*
* Returns:
* DD_OK, if the surface is us
e
able
* DD_OK, if the surface is usable
* DDERR_ISLOST if the surface is lost
* See IWineD3DSurface::IsLost for more details
*
...
...
dlls/dinput/device.c
View file @
42a61d7e
...
...
@@ -546,7 +546,7 @@ BOOL DIEnumDevicesCallbackAtoW(LPCDIDEVICEOBJECTINSTANCEA lpddi, LPVOID lpvRef)
if
(
lpddi
->
dwSize
==
sizeof
(
DIDEVICEINSTANCEA
))
{
/**
* if dwSize < sizeof(DIDEVICEINSTANCEA of DInput version >= 5)
* force feedback and other newer data
s
aren't available
* force feedback and other newer data aren't available
*/
ddtmp
.
dwFFMaxForce
=
lpddi
->
dwFFMaxForce
;
ddtmp
.
dwFFForceResolution
=
lpddi
->
dwFFForceResolution
;
...
...
dlls/dmime/tempotrack.c
View file @
42a61d7e
...
...
@@ -117,7 +117,7 @@ static HRESULT WINAPI IDirectMusicTempoTrack_IDirectMusicTrack_InitPlay (LPDIREC
ERR
(
": no more memory
\n
"
);
return
E_OUTOFMEMORY
;
}
/** TODO real fill useful data
s
*/
/** TODO real fill useful data */
pState
->
dummy
=
0
;
*
ppStateData
=
pState
;
return
S_OK
;
...
...
dlls/mshtml/nsiface.idl
View file @
42a61d7e
...
...
@@ -18,9 +18,9 @@
/*
*
NOTE
:
*
This
file
is
not
a
n
usual
idl
file
.
Interfaces
in
this
file
are
XPCOM
interfaces
*
(
NOT
MSCOM
!
),
but
we
generate
the
header
file
with
WIDL
compatibile
with
XPCOM
,
*
use
able
in
C
code
.
*
This
file
is
not
a
typical
idl
file
.
Interfaces
in
this
file
are
XPCOM
*
interfaces
(
NOT
MSCOM
!
),
but
we
generate
the
header
file
with
WIDL
*
compatible
with
XPCOM
,
us
able
in
C
code
.
*/
cpp_quote
(
"#define GECKO_VERSION \"
0.1.0
\
""
)
...
...
dlls/msi/msi.c
View file @
42a61d7e
...
...
@@ -1796,7 +1796,7 @@ end:
* szFeature [I] Feature's GUID string
*
* RETURNS
* INSTALLSTATE_LOCAL Feature is installed and us
e
able
* INSTALLSTATE_LOCAL Feature is installed and usable
* INSTALLSTATE_ABSENT Feature is absent
* INSTALLSTATE_ADVERTISED Feature should be installed on demand
* INSTALLSTATE_UNKNOWN An error occurred
...
...
dlls/ole32/moniker.c
View file @
42a61d7e
...
...
@@ -1212,7 +1212,7 @@ HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid)
return
res
;
}
/* If the file is not a storage object then attempt to match various bits in the file against a
pattern in the registry. This case is not frequently used, so I present only the ps
o
docode for
pattern in the registry. This case is not frequently used, so I present only the ps
eu
docode for
this case.
for(i=0;i<nFileTypes;i++)
...
...
dlls/quartz/avisplit.c
View file @
42a61d7e
...
...
@@ -624,7 +624,7 @@ static HRESULT AVISplitter_ProcessStreamList(AVISplitterImpl * This, const BYTE
if
(
nstdindex
>
0
)
{
ERR
(
"Stream %d got more th
e
n 1 superindex?
\n
"
,
This
->
Parser
.
cStreams
);
ERR
(
"Stream %d got more th
a
n 1 superindex?
\n
"
,
This
->
Parser
.
cStreams
);
break
;
}
...
...
dlls/riched20/tests/editor.c
View file @
42a61d7e
...
...
@@ -1759,21 +1759,21 @@ static void test_WM_SETFONT(void)
GetObjectA
(
testFont1
,
sizeof
(
LOGFONTA
),
&
sentLogFont
);
ok
(
!
strcmp
(
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
),
"EM_GETCHARFOMAT: Returned wrong font on test 1. Sent: %s, Returned: %s
\n
"
,
"EM_GETCHARFO
R
MAT: Returned wrong font on test 1. Sent: %s, Returned: %s
\n
"
,
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
);
SendMessage
(
hwndRichEdit
,
WM_SETFONT
,
(
WPARAM
)
testFont2
,(
LPARAM
)
MAKELONG
((
WORD
)
TRUE
,
0
));
SendMessage
(
hwndRichEdit
,
EM_GETCHARFORMAT
,
SCF_DEFAULT
,
(
LPARAM
)
&
returnedCF2A
);
GetObjectA
(
testFont2
,
sizeof
(
LOGFONTA
),
&
sentLogFont
);
ok
(
!
strcmp
(
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
),
"EM_GETCHARFOMAT: Returned wrong font on test 2. Sent: %s, Returned: %s
\n
"
,
"EM_GETCHARFO
R
MAT: Returned wrong font on test 2. Sent: %s, Returned: %s
\n
"
,
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
);
SendMessage
(
hwndRichEdit
,
WM_SETFONT
,
(
WPARAM
)
testFont3
,(
LPARAM
)
MAKELONG
((
WORD
)
TRUE
,
0
));
SendMessage
(
hwndRichEdit
,
EM_GETCHARFORMAT
,
SCF_DEFAULT
,
(
LPARAM
)
&
returnedCF2A
);
GetObjectA
(
testFont3
,
sizeof
(
LOGFONTA
),
&
sentLogFont
);
ok
(
!
strcmp
(
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
),
"EM_GETCHARFOMAT: Returned wrong font on test 3. Sent: %s, Returned: %s
\n
"
,
"EM_GETCHARFO
R
MAT: Returned wrong font on test 3. Sent: %s, Returned: %s
\n
"
,
sentLogFont
.
lfFaceName
,
returnedCF2A
.
szFaceName
);
/* This last test is special since we send in NULL. We clear the variables
...
...
@@ -1786,7 +1786,7 @@ static void test_WM_SETFONT(void)
SendMessage
(
hwndRichEdit
,
EM_GETCHARFORMAT
,
SCF_DEFAULT
,
(
LPARAM
)
&
returnedCF2A
);
GetObjectA
(
NULL
,
sizeof
(
LOGFONTA
),
&
sentLogFont
);
ok
(
!
strcmp
(
"System"
,
returnedCF2A
.
szFaceName
),
"EM_GETCHARFOMAT: Returned wrong font on test 4. Sent: NULL, Returned: %s. Expected
\"
System
\"
.
\n
"
,
returnedCF2A
.
szFaceName
);
"EM_GETCHARFO
R
MAT: Returned wrong font on test 4. Sent: NULL, Returned: %s. Expected
\"
System
\"
.
\n
"
,
returnedCF2A
.
szFaceName
);
DestroyWindow
(
hwndRichEdit
);
}
...
...
dlls/rpcrt4/tests/ndr_marshall.c
View file @
42a61d7e
...
...
@@ -276,7 +276,7 @@ todo_wine {
ok
(
mem
!=
StubMsg
.
BufferStart
+
wiredatalen
-
srcsize
,
"%s: mem points to buffer %p %p
\n
"
,
msgpfx
,
mem
,
StubMsg
.
BufferStart
);
else
ok
(
mem
==
StubMsg
.
BufferStart
+
wiredatalen
-
srcsize
,
"%s: mem doesn't point to buffer %p %p
\n
"
,
msgpfx
,
mem
,
StubMsg
.
BufferStart
);
ok
(
!
cmp
(
mem
,
memsrc
,
size
),
"%s: incorrecly unmarshaled
\n
"
,
msgpfx
);
ok
(
!
cmp
(
mem
,
memsrc
,
size
),
"%s: incorrec
t
ly unmarshaled
\n
"
,
msgpfx
);
ok
(
StubMsg
.
Buffer
-
StubMsg
.
BufferStart
==
wiredatalen
,
"%s: Buffer %p Start %p len %d
\n
"
,
msgpfx
,
StubMsg
.
Buffer
,
StubMsg
.
BufferStart
,
wiredatalen
);
ok
(
StubMsg
.
MemorySize
==
0
,
"%s: memorysize %d
\n
"
,
msgpfx
,
StubMsg
.
MemorySize
);
if
(
formattypes
[
2
]
!=
0xd
/* FC_ENUM16 */
)
{
...
...
dlls/wined3d/device.c
View file @
42a61d7e
...
...
@@ -222,7 +222,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_CreateVertexBuffer(IWineD3DDevice *ifac
return
WINED3DERR_INVALIDCALL
;
}
else
if
(
Pool
==
WINED3DPOOL_SCRATCH
)
{
/* The d3d9 testsuit shows that this is not allowed. It doesn't make much sense
* anyway, SCRATCH vertex buffers aren't us
e
able anywhere
* anyway, SCRATCH vertex buffers aren't usable anywhere
*/
WARN
(
"Vertex buffer in D3DPOOL_SCRATCH requested, returning WINED3DERR_INVALIDCALL
\n
"
);
*
ppVertexBuffer
=
NULL
;
...
...
dlls/wined3d/wined3d_private.h
View file @
42a61d7e
...
...
@@ -2298,14 +2298,14 @@ typedef struct IWineD3DVertexShaderImpl {
attrib_declaration
swizzled_attribs
[
MAX_ATTRIBS
];
UINT
num_swizzled_attribs
;
/* run time data
s
... */
/* run time data... */
VSHADERDATA
*
data
;
UINT
min_rel_offset
,
max_rel_offset
;
UINT
rel_offset
;
UINT
recompile_count
;
#if 0 /* needs reworking */
/* run time data
s
*/
/* run time data */
VSHADERINPUTDATA input;
VSHADEROUTPUTDATA output;
#endif
...
...
dlls/ws2_32/async.c
View file @
42a61d7e
...
...
@@ -124,7 +124,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
};
CRITICAL_SECTION
csWSgetXXXbyYYY
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
/* proto
p
types of some functions in socket.c
/* prototypes of some functions in socket.c
*/
UINT
wsaErrno
(
void
);
UINT
wsaHerrno
(
int
errnr
);
...
...
programs/rpcss/np_server.c
View file @
42a61d7e
...
...
@@ -267,7 +267,7 @@ static DWORD WINAPI NPMainWorkThread(LPVOID ignored)
}
if
(
wait_result
==
WAIT_FAILED
)
{
WINE_ERR
(
"Couldn't enter master mutex. Expect prolems.
\n
"
);
WINE_ERR
(
"Couldn't enter master mutex. Expect pro
b
lems.
\n
"
);
}
else
{
/* now create a new named pipe instance to listen on */
np_server_end
=
CreateNamedPipe
(
...
...
tools/winemaker
View file @
42a61d7e
...
...
@@ -1313,7 +1313,7 @@ sub fix_file($$$)
# by a reference to an array containing:
# - "push" for pack(push,...) directives, "" otherwise
# - the directive's identifier at index 1
# - the directive's align
e
ment value at index 2
# - the directive's alignment value at index 2
#
# Don't believe a word of what the documentation says: it's all wrong.
# The code below is based on the actual behavior of Visual C/C++ 6.
...
...
tools/wrc/parser.y
View file @
42a61d7e
...
...
@@ -509,7 +509,7 @@ resource
* However, we can test the lookahead-token for
* being "non-expression" type, in which case we
* continue. Fortunately, tNL is the only token that
* will break expression parsing and is implicit
e
ly
* will break expression parsing and is implicitly
* void, so we just remove it. This scheme makes it
* possible to do some (not all) fancy preprocessor
* stuff.
...
...
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