gdi32: Declare some functions static.

This commit is contained in:
Andrew Talbot 2007-01-08 20:19:46 +00:00 committed by Alexandre Julliard
parent d4fdeeaa46
commit 21ebf42f83
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdi);
* *
* Fix viewport extensions for isotropic mode. * Fix viewport extensions for isotropic mode.
*/ */
void MAPPING_FixIsotropic( DC * dc ) static void MAPPING_FixIsotropic( DC * dc )
{ {
double xdim = fabs((double)dc->vportExtX * GetDeviceCaps( dc->hSelf, HORZSIZE ) / double xdim = fabs((double)dc->vportExtX * GetDeviceCaps( dc->hSelf, HORZSIZE ) /
(GetDeviceCaps( dc->hSelf, HORZRES ) * dc->wndExtX)); (GetDeviceCaps( dc->hSelf, HORZRES ) * dc->wndExtX));

View File

@ -439,7 +439,7 @@ typedef struct PRINTJOB
#define MAX_PRINT_JOBS 1 #define MAX_PRINT_JOBS 1
#define SP_OK 1 #define SP_OK 1
PPRINTJOB gPrintJobsTable[MAX_PRINT_JOBS]; static PPRINTJOB gPrintJobsTable[MAX_PRINT_JOBS];
static PPRINTJOB FindPrintJobFromHandle(HANDLE16 hHandle) static PPRINTJOB FindPrintJobFromHandle(HANDLE16 hHandle)