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
b3bf746f
Commit
b3bf746f
authored
Nov 25, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Straighten out some ellipses.
parent
36e195a1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
name_server.c
dlls/dplayx/name_server.c
+1
-1
sound3d.c
dlls/dsound/sound3d.c
+1
-1
format_msg.c
dlls/kernel32/format_msg.c
+1
-1
storage32.c
dlls/ole32/storage32.c
+1
-1
run.c
dlls/riched20/run.c
+1
-1
system.c
dlls/uxtheme/system.c
+1
-1
mci.c
dlls/winmm/mci.c
+1
-1
cmdlgtst.c
programs/cmdlgtst/cmdlgtst.c
+2
-2
debug.c
tools/winedump/debug.c
+1
-1
No files found.
dlls/dplayx/name_server.c
View file @
b3bf746f
...
...
@@ -169,7 +169,7 @@ LPVOID NS_GetNSAddr( LPVOID lpNSInfo )
/* Ok. Cheat and don't search for the correct stuff just take the first.
* FIXME: In the future how are we to know what is _THE_ enum we used?
* This is going to have to go into dplay somehow. Perhaps it
* comes back with app server id for the join command! Oh...that
* comes back with app server id for the join command! Oh...
that
* must be it. That would make this method obsolete once that's
* in place.
*/
...
...
dlls/dsound/sound3d.c
View file @
b3bf746f
...
...
@@ -106,7 +106,7 @@ static inline D3DVALUE RadToDeg (D3DVALUE angle)
static
inline
D3DVALUE
AngleBetweenVectorsRad
(
const
D3DVECTOR
*
a
,
const
D3DVECTOR
*
b
)
{
D3DVALUE
la
,
lb
,
product
,
angle
,
cos
;
/* definition of scalar product: a*b = |a|*|b|*cos...therefore: */
/* definition of scalar product: a*b = |a|*|b|*cos...
therefore: */
product
=
ScalarProduct
(
a
,
b
);
la
=
VectorMagnitude
(
a
);
lb
=
VectorMagnitude
(
b
);
...
...
dlls/kernel32/format_msg.c
View file @
b3bf746f
...
...
@@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
resource
);
/* Messages
...used by FormatMessage (KERNEL32.something)
/* Messages
used by FormatMessage
*
* They can be specified either directly or using a message ID and
* loading them from the resource.
...
...
dlls/ole32/storage32.c
View file @
b3bf746f
...
...
@@ -6606,7 +6606,7 @@ static HRESULT OLECONVERT_LoadOLE10(LPOLESTREAM pOleStream, OLECONVERT_OLESTREAM
if
(
hRes
==
S_OK
)
{
/* Get the TypeID...more info needed for this field */
/* Get the TypeID...
more info needed for this field */
dwSize
=
pOleStream
->
lpstbl
->
Get
(
pOleStream
,
(
void
*
)
&
(
pData
->
dwTypeID
),
sizeof
(
pData
->
dwTypeID
));
if
(
dwSize
!=
sizeof
(
pData
->
dwTypeID
))
{
...
...
dlls/riched20/run.c
View file @
b3bf746f
...
...
@@ -813,7 +813,7 @@ void ME_SetCharFormat(ME_TextEditor *editor, int nOfs, int nChars, CHARFORMAT2W
undo
->
nStart
=
tmp
.
pRun
->
member
.
run
.
nCharOfs
+
para
->
member
.
para
.
nCharOfs
;
undo
->
nLen
=
tmp
.
pRun
->
member
.
run
.
strText
->
nLen
;
undo
->
di
.
member
.
ustyle
=
tmp
.
pRun
->
member
.
run
.
style
;
/* we'd have to addref undo..ustyle and release tmp...style
/* we'd have to addref undo..
.
ustyle and release tmp...style
but they'd cancel each other out so we can do nothing instead */
}
else
...
...
dlls/uxtheme/system.c
View file @
b3bf746f
...
...
@@ -916,7 +916,7 @@ HRESULT WINAPI CloseThemeFile(HTHEMEFILE hThemeFile)
* char b[] = "\0"; where \0 can be one or more of any character, makes no difference
* the theme is applied smoothly (screen does not flicker)
* char *b = "\0" or NULL; where \0 can be zero or more of any character, makes no difference
* the function fails returning invalid parameter...very strange
* the function fails returning invalid parameter...
very strange
*/
HRESULT
WINAPI
ApplyTheme
(
HTHEMEFILE
hThemeFile
,
char
*
unknown
,
HWND
hWnd
)
{
...
...
dlls/winmm/mci.c
View file @
b3bf746f
...
...
@@ -1121,7 +1121,7 @@ static DWORD MCI_ParseOptArgs(LPDWORD data, int _offset, LPCWSTR lpCmd,
}
break
;
case
MCI_RECT
:
/* store rect in data (offset..
.
offset+3) */
/* store rect in data (offset..offset+3) */
*
dwFlags
|=
flg
;
if
(
!
MCI_GetDWord
(
&
(
data
[
offset
+
0
]),
&
args
)
||
!
MCI_GetDWord
(
&
(
data
[
offset
+
1
]),
&
args
)
||
...
...
programs/cmdlgtst/cmdlgtst.c
View file @
b3bf746f
...
...
@@ -885,8 +885,8 @@ static LRESULT CALLBACK EXPORT mainWindowDispatcher(
else
switch
(
uMsg
)
{
case
WM_CREATE
:
/*
* this is always the first message...
at least as far as
* we are concerned.
* this is always the first message...
at least as far
*
as
we are concerned.
*/
mwi_InitAll
(
hWnd
);
break
;
...
...
tools/winedump/debug.c
View file @
b3bf746f
...
...
@@ -69,7 +69,7 @@
* (hdr) IMAGE_SECTION_HEADER - list of COFF sections copied verbatim from .EXE;
* although this directory contains file offsets, these offsets are meaningless
* in the context of the .DBG file, because only the section headers are copied
* to the .DBG file...not the binary data it points to.
* to the .DBG file...
not the binary data it points to.
* (hdr) IMAGE_DEBUG_DIRECTORY - list of different formats of debug info contained in file
* (see IMAGE_DEBUG_TYPE_* descriptions below); tells where each section starts
* (hdr) OMFSignature (CV) - Contains "NBxx" signature, plus file offset telling how far
...
...
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