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
c9742b32
Commit
c9742b32
authored
Mar 28, 2000
by
Niels Kristian Bech Jensen
Committed by
Alexandre Julliard
Mar 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix some compiler warnings.
- Remove superfluous #include statement.
parent
7bfd079b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
dsound_main.c
dlls/dsound/dsound_main.c
+1
-1
winaspi16.c
dlls/winaspi/winaspi16.c
+0
-1
path.c
graphics/path.c
+3
-3
macro.yacc.y
programs/winhelp/macro.yacc.y
+1
-0
No files found.
dlls/dsound/dsound_main.c
View file @
c9742b32
...
...
@@ -1192,7 +1192,7 @@ static HRESULT WINAPI IDirectSoundBufferImpl_GetFrequency(
return
DSERR_INVALIDPARAM
;
*
freq
=
This
->
freq
;
TRACE
(
"-> %d
\n
"
,
*
freq
);
TRACE
(
"-> %
l
d
\n
"
,
*
freq
);
return
DS_OK
;
}
...
...
dlls/winaspi/winaspi16.c
View file @
c9742b32
...
...
@@ -14,7 +14,6 @@
#include "aspi.h"
#include "winescsi.h"
#include "winaspi.h"
#include "winescsi.h"
#include "options.h"
#include "heap.h"
#include "debugtools.h"
...
...
graphics/path.c
View file @
c9742b32
...
...
@@ -67,7 +67,7 @@ DEFAULT_DEBUG_CHANNEL(gdi)
#define GROW_FACTOR_DENOM 1
/* Denominator of grow factor */
static
BOOL
PATH_PathToRegion
(
const
GdiPath
*
pPath
,
INT
nPolyFillMode
,
static
BOOL
PATH_PathToRegion
(
GdiPath
*
pPath
,
INT
nPolyFillMode
,
HRGN
*
pHrgn
);
static
void
PATH_EmptyPath
(
GdiPath
*
pPath
);
static
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
...
...
@@ -1133,7 +1133,7 @@ static BOOL PATH_FlattenPath(GdiPath *pPath)
* error occurs, SetLastError is called with the appropriate value and
* FALSE is returned.
*/
static
BOOL
PATH_PathToRegion
(
const
GdiPath
*
pPath
,
INT
nPolyFillMode
,
static
BOOL
PATH_PathToRegion
(
GdiPath
*
pPath
,
INT
nPolyFillMode
,
HRGN
*
pHrgn
)
{
int
numStrokes
,
iStroke
,
i
;
...
...
@@ -1143,7 +1143,7 @@ static BOOL PATH_PathToRegion(const GdiPath *pPath, INT nPolyFillMode,
assert
(
pPath
!=
NULL
);
assert
(
pHrgn
!=
NULL
);
PATH_FlattenPath
(
pPath
);
PATH_FlattenPath
(
pPath
);
/* FIXME: What happens when number of points is zero? */
...
...
programs/winhelp/macro.yacc.y
View file @
c9742b32
...
...
@@ -5,6 +5,7 @@
* Copyright 1996 Ulrich Schmid
*/
#include <stdlib.h>
#include "macro.h"
static int skip = 0;
...
...
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