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
550ea86f
Commit
550ea86f
authored
Feb 05, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps.drv: Declare some functions static.
parent
eeea88e3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
driver.c
dlls/wineps.drv/driver.c
+2
-2
escape.c
dlls/wineps.drv/escape.c
+1
-1
ppd.c
dlls/wineps.drv/ppd.c
+1
-1
No files found.
dlls/wineps.drv/driver.c
View file @
550ea86f
...
@@ -195,8 +195,8 @@ WORD WINAPI PSDRV_AdvancedSetupDialog16(HWND16 hwnd, HANDLE16 hDriver,
...
@@ -195,8 +195,8 @@ WORD WINAPI PSDRV_AdvancedSetupDialog16(HWND16 hwnd, HANDLE16 hDriver,
*
*
* Dialog proc for 'Paper' propsheet
* Dialog proc for 'Paper' propsheet
*/
*/
INT_PTR
CALLBACK
PSDRV_PaperDlgProc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
static
INT_PTR
CALLBACK
PSDRV_PaperDlgProc
(
HWND
hwnd
,
UINT
msg
,
lParam
)
WPARAM
wParam
,
LPARAM
lParam
)
{
{
PSDRV_DLGINFO
*
di
;
PSDRV_DLGINFO
*
di
;
int
i
,
Cursel
=
0
;
int
i
,
Cursel
=
0
;
...
...
dlls/wineps.drv/escape.c
View file @
550ea86f
...
@@ -381,7 +381,7 @@ INT PSDRV_EndPage( PSDRV_PDEVICE *physDev )
...
@@ -381,7 +381,7 @@ INT PSDRV_EndPage( PSDRV_PDEVICE *physDev )
/************************************************************************
/************************************************************************
* PSDRV_StartDocA
* PSDRV_StartDocA
*/
*/
INT
PSDRV_StartDocA
(
PSDRV_PDEVICE
*
physDev
,
const
DOCINFOA
*
doc
)
static
INT
PSDRV_StartDocA
(
PSDRV_PDEVICE
*
physDev
,
const
DOCINFOA
*
doc
)
{
{
LPCSTR
output
=
"LPT1:"
;
LPCSTR
output
=
"LPT1:"
;
BYTE
buf
[
300
];
BYTE
buf
[
300
];
...
...
dlls/wineps.drv/ppd.c
View file @
550ea86f
...
@@ -467,7 +467,7 @@ static BOOL PSDRV_PPDGetNextTuple(FILE *fp, PPDTuple *tuple)
...
@@ -467,7 +467,7 @@ static BOOL PSDRV_PPDGetNextTuple(FILE *fp, PPDTuple *tuple)
* entry which is appended to the list if name is not found.
* entry which is appended to the list if name is not found.
*
*
*/
*/
PAGESIZE
*
PSDRV_PPDGetPageSizeInfo
(
PPD
*
ppd
,
char
*
name
)
static
PAGESIZE
*
PSDRV_PPDGetPageSizeInfo
(
PPD
*
ppd
,
char
*
name
)
{
{
PAGESIZE
*
page
=
ppd
->
PageSizes
,
*
lastpage
;
PAGESIZE
*
page
=
ppd
->
PageSizes
,
*
lastpage
;
...
...
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