diff --git a/reactos/dll/win32/gdi32/misc/stubs.c b/reactos/dll/win32/gdi32/misc/stubs.c index adfcf680f39..f7a15c2044c 100644 --- a/reactos/dll/win32/gdi32/misc/stubs.c +++ b/reactos/dll/win32/gdi32/misc/stubs.c @@ -678,241 +678,6 @@ ColorMatchToTarget( return FALSE; } - -/* - * @unimplemented - */ -BOOL -WINAPI -wglCopyContext( - HGLRC hglrcSrc, - HGLRC hglrcDst, - UINT mask - ) -{ - if(!hglrcSrc || !hglrcDst) - return FALSE; - - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -HGLRC -WINAPI -wglCreateContext( - HDC hDc - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -HGLRC -WINAPI -wglCreateLayerContext( - HDC hDc, - int a1 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglDeleteContext( - HGLRC hglrc - ) -{ - if (hglrc == NULL) return FALSE; - - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -HGLRC -WINAPI -wglGetCurrentContext(VOID) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -HDC -WINAPI -wglGetCurrentDC(VOID) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -PROC -WINAPI -wglGetProcAddress( - LPCSTR func - ) -{ - if(!func) return NULL; - - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglMakeCurrent( - HDC a0, - HGLRC a1 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglShareLists( - HGLRC hglrc1, - HGLRC hglrc2 - ) -{ - if (hglrc1 == NULL) return FALSE; - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglDescribeLayerPlane( - HDC a0, - int a1, - int a2, - UINT a3, - LPLAYERPLANEDESCRIPTOR a4 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -int -WINAPI -wglSetLayerPaletteEntries( - HDC a0, - int a1, - int a2, - int a3, - CONST COLORREF *a4 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -int -WINAPI -wglGetLayerPaletteEntries( - HDC a0, - int a1, - int a2, - int a3, - COLORREF *a4 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglRealizeLayerPalette( - HDC a0, - int a1, - BOOL a2 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglSwapLayerBuffers( - HDC a0, - UINT a1 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - /* === AFTER THIS POINT I GUESS... ========= * (based on stack size in Norlander's .def) * === WHERE ARE THEY DEFINED? ============= diff --git a/reactos/dll/win32/gdi32/misc/stubsa.c b/reactos/dll/win32/gdi32/misc/stubsa.c index 7a9ac901a3a..3a6447a74dd 100644 --- a/reactos/dll/win32/gdi32/misc/stubsa.c +++ b/reactos/dll/win32/gdi32/misc/stubsa.c @@ -119,46 +119,6 @@ EnumICMProfilesA( } -/* - * @unimplemented - */ -BOOL -WINAPI -wglUseFontBitmapsA( - HDC a0, - DWORD a1, - DWORD a2, - DWORD a3 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglUseFontOutlinesA( - HDC a0, - DWORD a1, - DWORD a2, - DWORD a3, - FLOAT a4, - FLOAT a5, - int a6, - LPGLYPHMETRICSFLOAT a7 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - /* * @unimplemented */ diff --git a/reactos/dll/win32/gdi32/misc/stubsw.c b/reactos/dll/win32/gdi32/misc/stubsw.c index 08ed2ad8976..4170554fed4 100644 --- a/reactos/dll/win32/gdi32/misc/stubsw.c +++ b/reactos/dll/win32/gdi32/misc/stubsw.c @@ -107,46 +107,6 @@ EnumICMProfilesW( } -/* - * @unimplemented - */ -BOOL -WINAPI -wglUseFontBitmapsW( - HDC a0, - DWORD a1, - DWORD a2, - DWORD a3 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - -/* - * @unimplemented - */ -BOOL -WINAPI -wglUseFontOutlinesW( - HDC a0, - DWORD a1, - DWORD a2, - DWORD a3, - FLOAT a4, - FLOAT a5, - int a6, - LPGLYPHMETRICSFLOAT a7 - ) -{ - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; -} - - /* * @unimplemented */