Added little prog. that builds the WIN32K.SYS service table
[reactos.git] / reactos / subsys / win32k / objects / wingl.c
1
2 #undef WIN32_LEAN_AND_MEAN
3 #include <windows.h>
4 #include <ddk/ntddk.h>
5 #include <win32k/wingl.h>
6
7 // #define NDEBUG
8 #include <internal/debug.h>
9
10 INT
11 STDCALL
12 W32kChoosePixelFormat(HDC hDC,
13 CONST PPIXELFORMATDESCRIPTOR pfd)
14 {
15 UNIMPLEMENTED;
16 }
17
18
19 INT
20 STDCALL
21 W32kDescribePixelFormat(HDC hDC,
22 INT PixelFormat,
23 UINT BufSize,
24 LPPIXELFORMATDESCRIPTOR pfd)
25 {
26 UNIMPLEMENTED;
27 }
28
29 UINT
30 STDCALL
31 W32kGetEnhMetaFilePixelFormat(HENHMETAFILE hEMF,
32 DWORD BufSize,
33 CONST PPIXELFORMATDESCRIPTOR pfd)
34 {
35 UNIMPLEMENTED;
36 }
37
38 INT
39 STDCALL
40 W32kGetPixelFormat(HDC hDC)
41 {
42 UNIMPLEMENTED;
43 }
44
45 BOOL
46 STDCALL
47 W32kSetPixelFormat(HDC hDC,
48 INT PixelFormat,
49 CONST PPIXELFORMATDESCRIPTOR pfd)
50 {
51 UNIMPLEMENTED;
52 }
53
54 BOOL
55 STDCALL
56 W32kSwapBuffers(HDC hDC)
57 {
58 UNIMPLEMENTED;
59 }
60
61