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
95ae71f3
Commit
95ae71f3
authored
Jun 29, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jul 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling/grammar fixes.
parent
6930012f
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
12 deletions
+12
-12
surface.c
dlls/d3dx9_36/surface.c
+3
-3
msvideo_main.c
dlls/msvfw32/msvideo_main.c
+1
-1
sec_mgr.c
dlls/urlmon/sec_mgr.c
+1
-1
uri.c
dlls/urlmon/tests/uri.c
+1
-1
psdrv.h
dlls/wineps.drv/psdrv.h
+1
-1
socket.c
dlls/ws2_32/socket.c
+1
-1
builtins.c
programs/cmd/builtins.c
+1
-1
wcmdmain.c
programs/cmd/wcmdmain.c
+2
-2
c2man.pl
tools/c2man.pl
+1
-1
No files found.
dlls/d3dx9_36/surface.c
View file @
95ae71f3
...
...
@@ -1030,7 +1030,7 @@ HRESULT WINAPI D3DXGetImageInfoFromResourceW(HMODULE module, const WCHAR *resour
*
* RETURNS
* Success: D3D_OK
* Failure: D3DERR_INVALIDCALL, if pDestSurface
or pSrcData or SrcDataSize are
NULL
* Failure: D3DERR_INVALIDCALL, if pDestSurface
, pSrcData or SrcDataSize is
NULL
* D3DXERR_INVALIDDATA, if pSrcData is no valid image file
*
*/
...
...
@@ -1720,7 +1720,7 @@ void point_filter_argb_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slic
* RETURNS
* Success: D3D_OK, if we successfully load the pixel data into our surface or
* if pSrcMemory is NULL but the other parameters are valid
* Failure: D3DERR_INVALIDCALL, if pDestSurface, SrcPitch or pSrcRect
are
NULL or
* Failure: D3DERR_INVALIDCALL, if pDestSurface, SrcPitch or pSrcRect
is
NULL or
* if SrcFormat is an invalid format (other than D3DFMT_UNKNOWN) or
* if DestRect is invalid
* D3DXERR_INVALIDDATA, if we fail to lock pDestSurface
...
...
@@ -1871,7 +1871,7 @@ HRESULT WINAPI D3DXLoadSurfaceFromMemory(IDirect3DSurface9 *dst_surface,
*
* RETURNS
* Success: D3D_OK
* Failure: D3DERR_INVALIDCALL, if pDestSurface or pSrcSurface
are
NULL
* Failure: D3DERR_INVALIDCALL, if pDestSurface or pSrcSurface
is
NULL
* D3DXERR_INVALIDDATA, if one of the surfaces is not lockable
*
*/
...
...
dlls/msvfw32/msvideo_main.c
View file @
95ae71f3
...
...
@@ -67,7 +67,7 @@ struct _reg_driver
static
reg_driver
*
reg_driver_list
=
NULL
;
/* This one is a macro
such that it works
for both ASCII and Unicode */
/* This one is a macro
in order to work
for both ASCII and Unicode */
#define fourcc_to_string(str, fcc) do { \
(str)[0] = LOBYTE(LOWORD(fcc)); \
(str)[1] = HIBYTE(LOWORD(fcc)); \
...
...
dlls/urlmon/sec_mgr.c
View file @
95ae71f3
...
...
@@ -2077,7 +2077,7 @@ HRESULT WINAPI CompareSecurityIds(BYTE *secid1, DWORD size1, BYTE *secid2, DWORD
/********************************************************************
* IsInternetESCEnabledLocal (URLMON.108)
*
* Undocumented, returns if IE is running in Enhanced Security Configuration.
* Undocumented, returns
TRUE
if IE is running in Enhanced Security Configuration.
*/
BOOL
WINAPI
IsInternetESCEnabledLocal
(
void
)
{
...
...
dlls/urlmon/tests/uri.c
View file @
95ae71f3
...
...
@@ -4583,7 +4583,7 @@ typedef struct _invalid_uri {
static
const
invalid_uri
invalid_uri_tests
[]
=
{
/* Has to have a scheme name. */
{
"://www.winehq.org"
,
0
,
FALSE
},
/* Window
's doesn't like URI'
s which are implicitly file paths without the
/* Window
s doesn't like URI
s which are implicitly file paths without the
* ALLOW_IMPLICIT_FILE_SCHEME flag set.
*/
{
"C:/test/test.mp3"
,
0
,
FALSE
},
...
...
dlls/wineps.drv/psdrv.h
View file @
95ae71f3
...
...
@@ -99,7 +99,7 @@ typedef struct _tagAFM {
const
AFMMETRICS
*
Metrics
;
}
AFM
;
/* Note no 'next' in AFM. Use AFMLISTENTRY as a container. This allow more than
/* Note no 'next' in AFM. Use AFMLISTENTRY as a container. This allow
s
more than
one list to exist without having to reallocate the entire AFM structure. We
keep a global list of all afms (PSDRV_AFMFontList) plus a list of available
fonts for each DC (dc->physDev->Fonts) */
...
...
dlls/ws2_32/socket.c
View file @
95ae71f3
...
...
@@ -4758,7 +4758,7 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
switch
(
optname
)
{
/* Some options need some conversion before they can be sent to
* setsockopt. The conversions are done here, then they will fall though
* setsockopt. The conversions are done here, then they will fall th
r
ough
* to the general case. Special options that are not passed to
* setsockopt follow below that.*/
...
...
programs/cmd/builtins.c
View file @
95ae71f3
...
...
@@ -874,7 +874,7 @@ void WCMD_copy(WCHAR * args) {
if
(
thiscopy
->
binarycopy
==
-
1
)
thiscopy
->
binarycopy
=
!
anyconcats
;
/* Convert to fully qualified path/filename in srcpath, file filenamepart pointing
to where the filename portion begins (used for wildcar
t expansion.
*/
to where the filename portion begins (used for wildcar
d expansion).
*/
GetFullPathNameW
(
thiscopy
->
name
,
sizeof
(
srcpath
)
/
sizeof
(
WCHAR
),
srcpath
,
&
filenamepart
);
WINE_TRACE
(
"Full src name is '%s'
\n
"
,
wine_dbgstr_w
(
srcpath
));
...
...
programs/cmd/wcmdmain.c
View file @
95ae71f3
...
...
@@ -1605,8 +1605,8 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects,
case
WCMD_FOR
:
case
WCMD_IF
:
/* Very oddly, probably because of all the special parsing required for
these two commands, neither
for nor if are
supported when called,
i
e call if 1==1... will fail.
*/
these two commands, neither
'for' nor 'if' is
supported when called,
i
.e. 'call if 1==1...' will fail.
*/
if
(
!
retrycall
)
{
if
(
i
==
WCMD_FOR
)
WCMD_for
(
p
,
cmdList
);
else
if
(
i
==
WCMD_IF
)
WCMD_if
(
p
,
cmdList
);
...
...
tools/c2man.pl
View file @
95ae71f3
...
...
@@ -521,7 +521,7 @@ sub process_comment_text($)
s/\[I\]|\[i\]|\[in\]|\[IN\]/\[In\] /g
;
s/\[O\]|\[o\]|\[out\]|\[OUT\]/\[Out\]/g
;
s/\[I\/O\]|\[I\,O\]|\[i\/o\]|\[in\/out\]|\[IN\/OUT\]/\[In\/Out\]/g
;
# TRUE/FALSE/NULL are defines, capit
i
lise them
# TRUE/FALSE/NULL are defines, capit
a
lise them
s/True|true/TRUE/g
;
s/False|false/FALSE/g
;
s/Null|null/NULL/g
;
...
...
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