Capture window station name passed from usermode
[reactos.git] / reactos / include / win32k / wingl.h
1
2 #ifndef __WIN32K_WINGL_H
3 #define __WIN32K_WINGL_H
4
5 INT
6 STDCALL
7 NtGdiChoosePixelFormat(HDC hDC,
8 CONST PPIXELFORMATDESCRIPTOR pfd);
9
10 INT
11 STDCALL
12 NtGdiDescribePixelFormat(HDC hDC,
13 INT PixelFormat,
14 UINT BufSize,
15 PPIXELFORMATDESCRIPTOR pfd);
16
17 UINT
18 STDCALL
19 NtGdiGetEnhMetaFilePixelFormat(HENHMETAFILE hEMF,
20 DWORD BufSize,
21 CONST PPIXELFORMATDESCRIPTOR pfd);
22
23 INT
24 STDCALL
25 NtGdiGetPixelFormat(HDC hDC);
26
27 BOOL
28 STDCALL
29 NtGdiSetPixelFormat(HDC hDC,
30 INT PixelFormat,
31 CONST PPIXELFORMATDESCRIPTOR pfd);
32
33 BOOL
34 STDCALL
35 NtGdiSwapBuffers(HDC hDC);
36
37 #endif
38