*** empty log message ***
[reactos.git] / reactos / subsys / win32k / eng / enum.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * PURPOSE: GDI Driver Enumeration Functions
5 * FILE: subsys/win32k/eng/enum.c
6 * PROGRAMER: Jason Filby
7 * REVISION HISTORY:
8 * 3/7/1999: Created
9 */
10
11 #include <ddk/winddi.h>
12
13 ULONG CLIPOBJ_cEnumStart(IN PCLIPOBJ ClipObj,
14 IN BOOL ShouldDoAll,
15 IN ULONG ClipType,
16 IN ULONG BuildOrder,
17 IN ULONG MaxRects)
18 {
19 // Sets the parameters for enumerating rectables in the given clip region
20
21 ULONG enumCount = 0;
22 ENUMRECTS enumRects;
23
24 // MUCH WORK TO DO HERE
25
26 // Return the number of rectangles enumerated
27 if(enumCount>MaxRects)
28 {
29 enumCount = 0xFFFFFFFF;
30 }
31 return enumCount;
32 }
33
34 BOOL CLIPOBJ_bEnum(IN PCLIPOBJ ClipObj,
35 IN ULONG ObjSize,
36 OUT ULONG *EnumRects)
37 {
38 }