gdi32: Declare some functions static.
This commit is contained in:
parent
d4fdeeaa46
commit
21ebf42f83
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue