mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:52:56 +00:00
- remove wgl* stubs added in r512, they don't belong here
svn path=/trunk/; revision=43186
This commit is contained in:
parent
c4214a9722
commit
dc0fc114d6
3 changed files with 0 additions and 315 deletions
|
@ -678,241 +678,6 @@ ColorMatchToTarget(
|
||||||
return FALSE;
|
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... =========
|
/* === AFTER THIS POINT I GUESS... =========
|
||||||
* (based on stack size in Norlander's .def)
|
* (based on stack size in Norlander's .def)
|
||||||
* === WHERE ARE THEY DEFINED? =============
|
* === WHERE ARE THEY DEFINED? =============
|
||||||
|
|
|
@ -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
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue