Commit 21ebf42f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

gdi32: Declare some functions static.

parent d4fdeeaa
......@@ -35,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdi);
*
* 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 ) /
(GetDeviceCaps( dc->hSelf, HORZRES ) * dc->wndExtX));
......
......@@ -439,7 +439,7 @@ typedef struct PRINTJOB
#define MAX_PRINT_JOBS 1
#define SP_OK 1
PPRINTJOB gPrintJobsTable[MAX_PRINT_JOBS];
static PPRINTJOB gPrintJobsTable[MAX_PRINT_JOBS];
static PPRINTJOB FindPrintJobFromHandle(HANDLE16 hHandle)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment