Added little prog. that builds the WIN32K.SYS service table
[reactos.git] / reactos / include / win32k / wingl.h
index 2ec6477..b7a0e8b 100644 (file)
@@ -2,25 +2,37 @@
 #ifndef __WIN32K_WINGL_H
 #define __WIN32K_WINGL_H
 
-INT  W32kChoosePixelFormat(HDC  hDC,
+INT
+STDCALL
+W32kChoosePixelFormat(HDC  hDC,
                            CONST PPIXELFORMATDESCRIPTOR  pfd);
 
-INT  W32kDescribePixelFormat(HDC  hDC,
+INT
+STDCALL
+W32kDescribePixelFormat(HDC  hDC,
                              INT  PixelFormat,
                              UINT  BufSize,
                              PPIXELFORMATDESCRIPTOR  pfd);
 
-UINT  W32kGetEnhMetaFilePixelFormat(HENHMETAFILE  hEMF,
+UINT
+STDCALL
+W32kGetEnhMetaFilePixelFormat(HENHMETAFILE  hEMF,
                                     DWORD  BufSize, 
                                     CONST PPIXELFORMATDESCRIPTOR  pfd);
 
-INT  W32kGetPixelFormat(HDC  hDC);
+INT
+STDCALL
+W32kGetPixelFormat(HDC  hDC);
 
-BOOL  W32kSetPixelFormat(HDC  hDC,
+BOOL
+STDCALL
+W32kSetPixelFormat(HDC  hDC,
                          INT  PixelFormat,
                          CONST PPIXELFORMATDESCRIPTOR  pfd);
 
-BOOL  W32kSwapBuffers(HDC  hDC);
+BOOL
+STDCALL
+W32kSwapBuffers(HDC  hDC);
 
 #endif