mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:35:43 +00:00
Fixed compiler warning
svn path=/trunk/; revision=787
This commit is contained in:
parent
b09592bf32
commit
e0c1e02c47
4 changed files with 10 additions and 7 deletions
|
@ -3,6 +3,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#undef WIN32_LEAN_AND_MEAN
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
|
#define WIN32_NO_STATUS
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <ddk/ntddk.h>
|
#include <ddk/ntddk.h>
|
||||||
#include <ddk/winddi.h>
|
#include <ddk/winddi.h>
|
||||||
|
|
|
@ -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
|
* GDI Driver support routines
|
||||||
* (mostly swiped from Wine)
|
* (mostly swiped from Wine)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32k/driver.h>
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
#include <ddk/ntddk.h>
|
#include <ddk/ntddk.h>
|
||||||
|
#include <windows.h>
|
||||||
|
#include <win32k/driver.h>
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
|
|
||||||
//#define NDEBUG
|
//#define NDEBUG
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <win32k/bitmaps.h>
|
#include <win32k/bitmaps.h>
|
||||||
#include <win32k/debug.h>
|
//#include <win32k/debug.h>
|
||||||
|
|
||||||
// #define NDEBUG
|
// #define NDEBUG
|
||||||
#include <internal/debug.h>
|
#include <internal/debug.h>
|
||||||
|
@ -541,7 +541,7 @@ BITMAPOBJ_GetWidthBytes (INT bmWidth, INT bpp)
|
||||||
return 2 * ((bmWidth+3) >> 2);
|
return 2 * ((bmWidth+3) >> 2);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
FIXME ("stub");
|
DPRINT ("stub");
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#undef WIN32_LEAN_AND_MEAN
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <ddk/ntddk.h>
|
#include <ddk/ntddk.h>
|
||||||
#include <win32k/debug.h>
|
//#include <win32k/debug.h>
|
||||||
#include <win32k/paint.h>
|
#include <win32k/paint.h>
|
||||||
|
|
||||||
// #define NDEBUG
|
// #define NDEBUG
|
||||||
|
@ -28,7 +28,7 @@ UINT W32kGetBoundsRect(HDC hDC,
|
||||||
LPRECT Bounds,
|
LPRECT Bounds,
|
||||||
UINT Flags)
|
UINT Flags)
|
||||||
{
|
{
|
||||||
FIXME("stub");
|
DPRINT("stub");
|
||||||
return DCB_RESET; /* bounding rectangle always empty */
|
return DCB_RESET; /* bounding rectangle always empty */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ UINT W32kSetBoundsRect(HDC hDC,
|
||||||
CONST PRECT Bounds,
|
CONST PRECT Bounds,
|
||||||
UINT Flags)
|
UINT Flags)
|
||||||
{
|
{
|
||||||
FIXME("stub");
|
DPRINT("stub");
|
||||||
return DCB_DISABLE; /* bounding rectangle always empty */
|
return DCB_DISABLE; /* bounding rectangle always empty */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue