Biswapriyo Nath : include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct.
Module: wine Branch: master Commit: 94db5c87195943957086f03b8a2f7fb3c5b3dff8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=94db5c87195943957086f03b8... Author: Biswapriyo Nath <nathbappai(a)gmail.com> Date: Wed Sep 23 21:10:11 2020 +0530 include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct. Signed-off-by: Biswapriyo Nath <nathbappai(a)gmail.com> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/ddraw.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ddraw.h b/include/ddraw.h index a3fd90dd37..0c14c46812 100644 --- a/include/ddraw.h +++ b/include/ddraw.h @@ -227,6 +227,10 @@ typedef struct IDirectDrawGammaControl *LPDIRECTDRAWGAMMACONTROL; #define DDBLT_WAIT 0x01000000 #define DDBLT_DEPTHFILL 0x02000000 #define DDBLT_DONOTWAIT 0x08000000 +#define DDBLT_PRESENTATION 0x10000000 +#define DDBLT_LAST_PRESENTATION 0x20000000 +#define DDBLT_EXTENDED_FLAGS 0x40000000 +#define DDBLT_EXTENDED_LINEAR_CONTENT 0x00000004 /* dwTrans for BltFast */ #define DDBLTFAST_NOCOLORKEY 0x00000000
participants (1)
-
Alexandre Julliard