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
1669b337
Commit
1669b337
authored
Dec 03, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Make PATH_AddEntry static.
parent
acac1a5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gdi_private.h
dlls/gdi32/gdi_private.h
+0
-1
path.c
dlls/gdi32/path.c
+2
-1
No files found.
dlls/gdi32/gdi_private.h
View file @
1669b337
...
...
@@ -511,7 +511,6 @@ extern BOOL PATH_Polygon(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN
extern
BOOL
PATH_PolyPolyline
(
DC
*
dc
,
const
POINT
*
pt
,
const
DWORD
*
counts
,
DWORD
polylines
)
DECLSPEC_HIDDEN
;
extern
BOOL
PATH_PolyPolygon
(
DC
*
dc
,
const
POINT
*
pt
,
const
INT
*
counts
,
UINT
polygons
)
DECLSPEC_HIDDEN
;
extern
BOOL
PATH_RoundRect
(
DC
*
dc
,
INT
x1
,
INT
y1
,
INT
x2
,
INT
y2
,
INT
ell_width
,
INT
ell_height
)
DECLSPEC_HIDDEN
;
extern
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
BYTE
flags
)
DECLSPEC_HIDDEN
;
/* painting.c */
extern
POINT
*
GDI_Bezier
(
const
POINT
*
Points
,
INT
count
,
INT
*
nPtsOut
)
DECLSPEC_HIDDEN
;
...
...
dlls/gdi32/path.c
View file @
1669b337
...
...
@@ -92,6 +92,7 @@ typedef struct tagFLOAT_POINT
}
FLOAT_POINT
;
static
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
BYTE
flags
);
static
BOOL
PATH_PathToRegion
(
GdiPath
*
pPath
,
INT
nPolyFillMode
,
HRGN
*
pHrgn
);
static
void
PATH_EmptyPath
(
GdiPath
*
pPath
);
...
...
@@ -1502,7 +1503,7 @@ static void PATH_EmptyPath(GdiPath *pPath)
* or PT_BEZIERTO, optionally ORed with PT_CLOSEFIGURE. Returns TRUE if
* successful, FALSE otherwise (e.g. if not enough memory was available).
*/
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
BYTE
flags
)
static
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
BYTE
flags
)
{
assert
(
pPath
!=
NULL
);
...
...
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