mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fixed DxEngCleanDC protoype
svn path=/trunk/; revision=31555
This commit is contained in:
parent
57cfafda1d
commit
df1782995e
2 changed files with 2 additions and 2 deletions
|
@ -80,6 +80,7 @@ BOOL DxEngSetDeviceGammaRamp(HDEV hPDev, PGAMMARAMP Ramp, BOOL Unuse);
|
||||||
|
|
||||||
BOOLEAN DxEngLockShareSem();
|
BOOLEAN DxEngLockShareSem();
|
||||||
BOOLEAN DxEngUnlockShareSem();
|
BOOLEAN DxEngUnlockShareSem();
|
||||||
|
BOOLEAN DxEngCleanDC(HDC hdc);
|
||||||
|
|
||||||
/* prototypes are not done yet, I need gather all my notes
|
/* prototypes are not done yet, I need gather all my notes
|
||||||
* to make them correct
|
* to make them correct
|
||||||
|
@ -99,7 +100,6 @@ DWORD DxEngGetHdevData(PEDD_DIRECTDRAW_GLOBAL pEDDgpl, DWORD Index);
|
||||||
DWORD DxEngSetHdevData(DWORD x1, DWORD x2, DWORD x3);
|
DWORD DxEngSetHdevData(DWORD x1, DWORD x2, DWORD x3);
|
||||||
DWORD DxEngGetDesktopDC(DWORD x1, DWORD x2, DWORD x3);
|
DWORD DxEngGetDesktopDC(DWORD x1, DWORD x2, DWORD x3);
|
||||||
DWORD DxEngDeleteDC(DWORD x1, DWORD x2);
|
DWORD DxEngDeleteDC(DWORD x1, DWORD x2);
|
||||||
DWORD DxEngCleanDC(DWORD x1);
|
|
||||||
DWORD DxEngSetDCOwner(DWORD x1, DWORD x2);
|
DWORD DxEngSetDCOwner(DWORD x1, DWORD x2);
|
||||||
DWORD DxEngSetDCState(DWORD x1, DWORD x2, DWORD x3);
|
DWORD DxEngSetDCState(DWORD x1, DWORD x2, DWORD x3);
|
||||||
DWORD DxEngGetDCState(HDC hDC, DWORD type);
|
DWORD DxEngGetDCState(HDC hDC, DWORD type);
|
||||||
|
|
|
@ -411,7 +411,7 @@ DWORD DxEngDeleteDC(DWORD x1, DWORD x2)
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
/* DxEngCleanDC */
|
/* DxEngCleanDC */
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
DWORD DxEngCleanDC(DWORD x1)
|
BOOLEAN DxEngCleanDC(HDC hdc)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue