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
dff5004b
Commit
dff5004b
authored
Aug 26, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
727a596e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
11 additions
and
11 deletions
+11
-11
subclass.c
dlls/comctl32/tests/subclass.c
+2
-2
time.c
dlls/msvcrt/tests/time.c
+1
-1
avidec.c
dlls/quartz/avidec.c
+2
-2
dsoundrender.c
dlls/quartz/dsoundrender.c
+1
-1
videorenderer.c
dlls/quartz/videorenderer.c
+1
-1
capture.c
dlls/winmm/tests/capture.c
+1
-1
wave.c
dlls/winmm/tests/wave.c
+1
-1
basetsd.h
include/basetsd.h
+1
-1
winnt.h
include/winnt.h
+1
-1
No files found.
dlls/comctl32/tests/subclass.c
View file @
dff5004b
...
...
@@ -161,8 +161,8 @@ static void ok_sequence(const struct message *expected, const char *context)
expected
++
;
actual
++
;
}
ok
(
!
expected
->
procnum
,
"Rec
ieved less messages the
n expected
\n
"
);
ok
(
!
actual
->
procnum
,
"Rec
ieved more messages the
n expected
\n
"
);
ok
(
!
expected
->
procnum
,
"Rec
eived fewer messages tha
n expected
\n
"
);
ok
(
!
actual
->
procnum
,
"Rec
eived more messages tha
n expected
\n
"
);
flush_sequence
();
}
...
...
dlls/msvcrt/tests/time.c
View file @
dff5004b
...
...
@@ -75,7 +75,7 @@ static void test_mktime()
local_time
=
mktime
(
&
my_tm
);
ok
(((
DWORD
)
local_time
==
SECSPERDAY
),
"mktime returned 0x%08lx
\n
"
,(
DWORD
)
local_time
);
/* TEST that we are indepen
ta
nt from the TZ variable */
/* TEST that we are indepen
de
nt from the TZ variable */
/*Argh, msvcrt doesn't have setenv() */
_snprintf
(
TZ_env
,
255
,
"TZ=%s"
,(
getenv
(
"TZ"
)
?
getenv
(
"TZ"
)
:
""
));
putenv
(
"TZ=GMT"
);
...
...
dlls/quartz/avidec.c
View file @
dff5004b
...
...
@@ -84,7 +84,7 @@ static DWORD AVIDec_SendSampleData(AVIDecImpl* This, LPBYTE data, DWORD size)
hr
=
IPin_ConnectionMediaType
(
This
->
ppPins
[
0
],
&
amt
);
if
(
FAILED
(
hr
))
{
ERR
(
"Unable to retr
ei
ve media type
\n
"
);
ERR
(
"Unable to retr
ie
ve media type
\n
"
);
goto
error
;
}
format
=
(
VIDEOINFOHEADER
*
)
amt
.
pbFormat
;
...
...
@@ -121,7 +121,7 @@ static DWORD AVIDec_SendSampleData(AVIDecImpl* This, LPBYTE data, DWORD size)
res
=
ICDecompress
(
This
->
hvid
,
0
,
&
format
->
bmiHeader
,
data
,
&
bi
,
pbDstStream
);
if
(
res
!=
ICERR_OK
)
ERR
(
"Error occured during the decompression (%lx)
\n
"
,
res
);
ERR
(
"Error occur
r
ed during the decompression (%lx)
\n
"
,
res
);
hr
=
OutputPin_SendSample
((
OutputPin
*
)
This
->
ppPins
[
1
],
pSample
);
if
(
hr
!=
S_OK
&&
hr
!=
VFW_E_NOT_CONNECTED
)
{
...
...
dlls/quartz/dsoundrender.c
View file @
dff5004b
...
...
@@ -111,7 +111,7 @@ static HRESULT DSoundRender_CreateSoundBuffer(IBaseFilter * iface)
hr
=
IPin_ConnectionMediaType
(
This
->
ppPins
[
0
],
&
amt
);
if
(
FAILED
(
hr
))
{
ERR
(
"Unable to retr
ei
ve media type
\n
"
);
ERR
(
"Unable to retr
ie
ve media type
\n
"
);
return
hr
;
}
...
...
dlls/quartz/videorenderer.c
View file @
dff5004b
...
...
@@ -181,7 +181,7 @@ static DWORD VideoRenderer_SendSampleData(VideoRendererImpl* This, LPBYTE data,
sdesc
.
dwSize
=
sizeof
(
sdesc
);
hr
=
IPin_ConnectionMediaType
(
This
->
ppPins
[
0
],
&
amt
);
if
(
FAILED
(
hr
))
{
ERR
(
"Unable to retr
ei
ve media type
\n
"
);
ERR
(
"Unable to retr
ie
ve media type
\n
"
);
return
hr
;
}
format
=
(
VIDEOINFOHEADER
*
)
amt
.
pbFormat
;
...
...
dlls/winmm/tests/capture.c
View file @
dff5004b
...
...
@@ -323,7 +323,7 @@ static void wave_in_test_device(int device)
WAVE_MAPPED
,
&
capsA
);
}
/* Try a PCMWAVEFORMAT aligned next to an unaccess
a
ble page for bounds
/* Try a PCMWAVEFORMAT aligned next to an unaccess
i
ble page for bounds
* checking */
twoPages
=
VirtualAlloc
(
NULL
,
2
*
dwPageSize
,
MEM_RESERVE
|
MEM_COMMIT
,
PAGE_READWRITE
);
...
...
dlls/winmm/tests/wave.c
View file @
dff5004b
...
...
@@ -627,7 +627,7 @@ static void wave_out_test_device(int device)
WAVE_MAPPED
,
&
capsA
);
}
/* Try a PCMWAVEFORMAT aligned next to an unaccess
a
ble page for bounds
/* Try a PCMWAVEFORMAT aligned next to an unaccess
i
ble page for bounds
* checking */
twoPages
=
VirtualAlloc
(
NULL
,
2
*
dwPageSize
,
MEM_RESERVE
|
MEM_COMMIT
,
PAGE_READWRITE
);
...
...
include/basetsd.h
View file @
dff5004b
...
...
@@ -38,7 +38,7 @@ extern "C" {
* type model where int and long are 32 bit and pointer is 64-bit.
*/
/* Type model indepent typedefs */
/* Type model indepen
den
t typedefs */
/* The __intXX types are native types defined by the MS C compiler.
* Apps that make use of them before they get defined here, can
* simply add to the command line:
...
...
include/winnt.h
View file @
dff5004b
...
...
@@ -2636,7 +2636,7 @@ typedef struct tagMESSAGE_RESOURCE_DATA {
*/
/*
* First a constant for the following typdefs.
* First a constant for the following typ
e
defs.
*/
#define ANYSIZE_ARRAY 1
...
...
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