[ros-diffs] [khornicek] 43186: - remove wgl* stubs added in r512, they don't belong here

khornicek at svn.reactos.org khornicek at svn.reactos.org
Sun Sep 27 14:41:17 CEST 2009


Author: khornicek
Date: Sun Sep 27 14:41:16 2009
New Revision: 43186

URL: http://svn.reactos.org/svn/reactos?rev=43186&view=rev
Log:
- remove wgl* stubs added in r512, they don't belong here

Modified:
    trunk/reactos/dll/win32/gdi32/misc/stubs.c
    trunk/reactos/dll/win32/gdi32/misc/stubsa.c
    trunk/reactos/dll/win32/gdi32/misc/stubsw.c

Modified: trunk/reactos/dll/win32/gdi32/misc/stubs.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/stubs.c?rev=43186&r1=43185&r2=43186&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/gdi32/misc/stubs.c [iso-8859-1] Sun Sep 27 14:41:16 2009
@@ -677,241 +677,6 @@
 	SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
 	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)

Modified: trunk/reactos/dll/win32/gdi32/misc/stubsa.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/stubsa.c?rev=43186&r1=43185&r2=43186&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/stubsa.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/gdi32/misc/stubsa.c [iso-8859-1] Sun Sep 27 14:41:16 2009
@@ -124,46 +124,6 @@
  */
 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
- */
-BOOL
-WINAPI
 UpdateICMRegKeyA(
 	DWORD	a0,
 	LPSTR	a1,

Modified: trunk/reactos/dll/win32/gdi32/misc/stubsw.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/stubsw.c?rev=43186&r1=43185&r2=43186&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/stubsw.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/gdi32/misc/stubsw.c [iso-8859-1] Sun Sep 27 14:41:16 2009
@@ -112,46 +112,6 @@
  */
 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
- */
-BOOL
-WINAPI
 UpdateICMRegKeyW(
 	DWORD	a0,
 	LPWSTR	a1,




More information about the Ros-diffs mailing list