wineps.drv: Declare some functions static.

This commit is contained in:
Andrew Talbot 2007-02-05 21:24:35 +00:00 committed by Alexandre Julliard
parent eeea88e305
commit 550ea86ffd
3 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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];

View File

@ -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;