Add information letting us know creation deletion of services has worked.
[reactos.git] / reactos / subsys / win32k / objects / wingl.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 #include <w32k.h>
22
23 #define NDEBUG
24 #include <debug.h>
25
26 INT
27 STDCALL
28 NtGdiChoosePixelFormat(HDC hDC,
29 CONST PPIXELFORMATDESCRIPTOR pfd)
30 {
31 UNIMPLEMENTED;
32 return 0;
33 }
34
35
36 INT
37 STDCALL
38 NtGdiDescribePixelFormat(HDC hDC,
39 INT PixelFormat,
40 UINT BufSize,
41 LPPIXELFORMATDESCRIPTOR pfd)
42 {
43 UNIMPLEMENTED;
44 return 0;
45 }
46
47 UINT
48 STDCALL
49 NtGdiGetEnhMetaFilePixelFormat(HENHMETAFILE hEMF,
50 DWORD BufSize,
51 CONST PPIXELFORMATDESCRIPTOR pfd)
52 {
53 UNIMPLEMENTED;
54 return 0;
55 }
56
57 INT
58 STDCALL
59 NtGdiGetPixelFormat(HDC hDC)
60 {
61 UNIMPLEMENTED;
62 return 0;
63 }
64
65 BOOL
66 STDCALL
67 NtGdiSetPixelFormat(HDC hDC,
68 INT PixelFormat,
69 CONST PPIXELFORMATDESCRIPTOR pfd)
70 {
71 UNIMPLEMENTED;
72 return FALSE;
73 }
74
75 BOOL
76 STDCALL
77 NtGdiSwapBuffers(HDC hDC)
78 {
79 UNIMPLEMENTED;
80 return FALSE;
81 }
82
83 /* EOF */