Fixed compiler warning

svn path=/trunk/; revision=787
This commit is contained in:
Eric Kohl 1999-11-20 21:51:19 +00:00
parent b09592bf32
commit e0c1e02c47
4 changed files with 10 additions and 7 deletions

View file

@ -3,6 +3,7 @@
*/
#undef WIN32_LEAN_AND_MEAN
#define WIN32_NO_STATUS
#include <windows.h>
#include <ddk/ntddk.h>
#include <ddk/winddi.h>

View file

@ -1,12 +1,14 @@
/* $Id: driver.c,v 1.4 1999/10/28 23:37:14 rex Exp $
/* $Id: driver.c,v 1.5 1999/11/20 21:51:19 ekohl Exp $
*
* GDI Driver support routines
* (mostly swiped from Wine)
*
*/
#include <win32k/driver.h>
#undef WIN32_LEAN_AND_MEAN
#include <ddk/ntddk.h>
#include <windows.h>
#include <win32k/driver.h>
#include <wchar.h>
//#define NDEBUG

View file

@ -4,7 +4,7 @@
#include <windows.h>
#include <stdlib.h>
#include <win32k/bitmaps.h>
#include <win32k/debug.h>
//#include <win32k/debug.h>
// #define NDEBUG
#include <internal/debug.h>
@ -541,7 +541,7 @@ BITMAPOBJ_GetWidthBytes (INT bmWidth, INT bpp)
return 2 * ((bmWidth+3) >> 2);
default:
FIXME ("stub");
DPRINT ("stub");
}
return -1;

View file

@ -3,7 +3,7 @@
#undef WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <ddk/ntddk.h>
#include <win32k/debug.h>
//#include <win32k/debug.h>
#include <win32k/paint.h>
// #define NDEBUG
@ -28,7 +28,7 @@ UINT W32kGetBoundsRect(HDC hDC,
LPRECT Bounds,
UINT Flags)
{
FIXME("stub");
DPRINT("stub");
return DCB_RESET; /* bounding rectangle always empty */
}
@ -42,7 +42,7 @@ UINT W32kSetBoundsRect(HDC hDC,
CONST PRECT Bounds,
UINT Flags)
{
FIXME("stub");
DPRINT("stub");
return DCB_DISABLE; /* bounding rectangle always empty */
}