update for HEAD-2003091401
[reactos.git] / subsys / win32k / objects / paint.c
1 /*
2  *  ReactOS W32 Subsystem
3  *  Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$ */
20
21 #undef WIN32_LEAN_AND_MEAN
22 #include <windows.h>
23 #include <ddk/ntddk.h>
24 //#include <win32k/debug.h>
25 #include <win32k/paint.h>
26
27 #define NDEBUG
28 #include <win32k/debug1.h>
29
30 BOOL
31 STDCALL
32 NtGdiGdiFlush(VOID)
33 {
34   UNIMPLEMENTED;
35 }
36
37 DWORD
38 STDCALL
39 NtGdiGdiGetBatchLimit(VOID)
40 {
41   UNIMPLEMENTED;
42 }
43
44 DWORD
45 STDCALL
46 NtGdiGdiSetBatchLimit(DWORD  Limit)
47 {
48   UNIMPLEMENTED;
49 }
50
51 UINT
52 STDCALL
53 NtGdiGetBoundsRect(HDC  hDC,
54                         LPRECT  Bounds,
55                         UINT  Flags)
56 {
57   DPRINT("stub");
58   return  DCB_RESET;   /* bounding rectangle always empty */
59 }
60
61 UINT
62 STDCALL
63 NtGdiSetBoundsRect(HDC  hDC,
64                         CONST PRECT  Bounds,
65                         UINT  Flags)
66 {
67   DPRINT("stub");
68   return  DCB_DISABLE;   /* bounding rectangle always empty */
69 }
70 /* EOF */