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
37048214
Commit
37048214
authored
Aug 23, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps.drv: Make PSDRV_WriteRGB() static.
parent
fabfc5da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
ps.c
dlls/wineps.drv/ps.c
+1
-1
psdrv.h
dlls/wineps.drv/psdrv.h
+0
-1
No files found.
dlls/wineps.drv/ps.c
View file @
37048214
...
@@ -655,7 +655,7 @@ BOOL PSDRV_WriteIndexColorSpaceEnd(PHYSDEV dev)
...
@@ -655,7 +655,7 @@ BOOL PSDRV_WriteIndexColorSpaceEnd(PHYSDEV dev)
return
PSDRV_WriteSpool
(
dev
,
buf
,
sizeof
(
buf
)
-
1
);
return
PSDRV_WriteSpool
(
dev
,
buf
,
sizeof
(
buf
)
-
1
);
}
}
BOOL
PSDRV_WriteRGB
(
PHYSDEV
dev
,
COLORREF
*
map
,
int
number
)
static
BOOL
PSDRV_WriteRGB
(
PHYSDEV
dev
,
COLORREF
*
map
,
int
number
)
{
{
char
*
buf
=
HeapAlloc
(
PSDRV_Heap
,
0
,
number
*
7
+
1
),
*
ptr
;
char
*
buf
=
HeapAlloc
(
PSDRV_Heap
,
0
,
number
*
7
+
1
),
*
ptr
;
int
i
;
int
i
;
...
...
dlls/wineps.drv/psdrv.h
View file @
37048214
...
@@ -519,7 +519,6 @@ extern BOOL PSDRV_WriteHatch(PHYSDEV dev) DECLSPEC_HIDDEN;
...
@@ -519,7 +519,6 @@ extern BOOL PSDRV_WriteHatch(PHYSDEV dev) DECLSPEC_HIDDEN;
extern
BOOL
PSDRV_WriteRotate
(
PHYSDEV
dev
,
float
ang
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteRotate
(
PHYSDEV
dev
,
float
ang
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteIndexColorSpaceBegin
(
PHYSDEV
dev
,
int
size
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteIndexColorSpaceBegin
(
PHYSDEV
dev
,
int
size
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteIndexColorSpaceEnd
(
PHYSDEV
dev
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteIndexColorSpaceEnd
(
PHYSDEV
dev
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteRGB
(
PHYSDEV
dev
,
COLORREF
*
map
,
int
number
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteRGBQUAD
(
PHYSDEV
dev
,
const
RGBQUAD
*
rgb
,
int
number
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteRGBQUAD
(
PHYSDEV
dev
,
const
RGBQUAD
*
rgb
,
int
number
)
DECLSPEC_HIDDEN
;
extern
BOOL
PSDRV_WriteImage
(
PHYSDEV
dev
,
WORD
depth
,
INT
xDst
,
INT
yDst
,
extern
BOOL
PSDRV_WriteImage
(
PHYSDEV
dev
,
WORD
depth
,
INT
xDst
,
INT
yDst
,
INT
widthDst
,
INT
heightDst
,
INT
widthSrc
,
INT
widthDst
,
INT
heightDst
,
INT
widthSrc
,
...
...
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