Fixed some issues found by winapi_check.

This commit is contained in:
Patrik Stridvall 2002-11-27 20:21:24 +00:00 committed by Alexandre Julliard
parent 3546290285
commit 6cd866b0e6
3 changed files with 20 additions and 1 deletions

View File

@ -1065,4 +1065,3 @@
@ cdecl LOCAL_Unlock(long long) LOCAL_Unlock
@ stdcall NE_DefResourceHandler(long long long) NE_DefResourceHandler
@ cdecl SELECTOR_AllocBlock(ptr long long) SELECTOR_AllocBlock
@ cdecl VIRTUAL_SetFaultHandler(ptr ptr ptr) VIRTUAL_SetFaultHandler

View File

@ -1044,3 +1044,8 @@
# signal handling
@ cdecl __wine_set_signal_handler(long ptr) __wine_set_signal_handler
################################################################
# Wine dll separation hacks, these will go away, don't use them
#
@ cdecl VIRTUAL_SetFaultHandler(ptr ptr ptr) VIRTUAL_SetFaultHandler

View File

@ -435,6 +435,9 @@ void X11DRV_OpenGL_Init(Display *display)
{
}
/***********************************************************************
* ChoosePixelFormat (X11DRV.@)
*/
int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
const PIXELFORMATDESCRIPTOR *ppfd) {
ERR("No OpenGL support compiled in.\n");
@ -442,6 +445,9 @@ int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
return 0;
}
/***********************************************************************
* DescribePixelFormat (X11DRV.@)
*/
int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
int iPixelFormat,
UINT nBytes,
@ -451,12 +457,18 @@ int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
return 0;
}
/***********************************************************************
* GetPixelFormat (X11DRV.@)
*/
int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
ERR("No OpenGL support compiled in.\n");
return 0;
}
/***********************************************************************
* SetPixelFormat (X11DRV.@)
*/
BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
int iPixelFormat,
const PIXELFORMATDESCRIPTOR *ppfd) {
@ -465,6 +477,9 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
return FALSE;
}
/***********************************************************************
* SwapBuffers (X11DRV.@)
*/
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
ERR("No OpenGL support compiled in.\n");