mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:56:56 +00:00
Implemented DxEngGetRedirectionBitmap. Fixed GdiGetSetCopyCount.
svn path=/trunk/; revision=33087
This commit is contained in:
parent
4819d33d63
commit
622f5b732e
4 changed files with 7 additions and 6 deletions
|
@ -118,7 +118,7 @@ DWORD DxEngMarkSurfaceAsDirectDraw(DWORD x1, DWORD x2);
|
||||||
DWORD DxEngSelectPaletteToSurface(DWORD x1, DWORD x2);
|
DWORD DxEngSelectPaletteToSurface(DWORD x1, DWORD x2);
|
||||||
DWORD DxEngSyncPaletteTableWithDevice(DWORD x1, DWORD x2);
|
DWORD DxEngSyncPaletteTableWithDevice(DWORD x1, DWORD x2);
|
||||||
DWORD DxEngSetPaletteState(DWORD x1, DWORD x2, DWORD x3);
|
DWORD DxEngSetPaletteState(DWORD x1, DWORD x2, DWORD x3);
|
||||||
DWORD DxEngGetRedirectionBitmap(DWORD x1);
|
DWORD STDCALL DxEngGetRedirectionBitmap(DWORD x1);
|
||||||
DWORD DxEngLoadImage(DWORD x1,DWORD x2);
|
DWORD DxEngLoadImage(DWORD x1,DWORD x2);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ typedef enum _GETDCDWORD
|
||||||
|
|
||||||
typedef enum _GETSETDCDWORD
|
typedef enum _GETSETDCDWORD
|
||||||
{
|
{
|
||||||
GdtGetSetCopyCount = 2,
|
GdiGetSetCopyCount = 2,
|
||||||
GdiGetSetTextAlign,
|
GdiGetSetTextAlign,
|
||||||
GdiGetSetRelAbs,
|
GdiGetSetRelAbs,
|
||||||
GdiGetSetTextCharExtra,
|
GdiGetSetTextCharExtra,
|
||||||
|
|
|
@ -822,10 +822,11 @@ DWORD DxEngSetPaletteState(DWORD x1, DWORD x2, DWORD x3)
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
/* DxEngGetRedirectionBitmap */
|
/* DxEngGetRedirectionBitmap */
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
DWORD DxEngGetRedirectionBitmap(DWORD x1)
|
DWORD
|
||||||
|
STDCALL
|
||||||
|
DxEngGetRedirectionBitmap(DWORD x1)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return FALSE; // Normal return.
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
|
|
|
@ -2258,7 +2258,7 @@ NtGdiGetAndSetDCDword(
|
||||||
|
|
||||||
switch (u)
|
switch (u)
|
||||||
{
|
{
|
||||||
case GdtGetSetCopyCount:
|
case GdiGetSetCopyCount:
|
||||||
SafeResult = dc->ulCopyCount;
|
SafeResult = dc->ulCopyCount;
|
||||||
dc->ulCopyCount = dwIn;
|
dc->ulCopyCount = dwIn;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue