[WIN32K:NTUSER] Correctly delete menus in failure cases in MENU_GetSystemMenu. CORE...
[reactos.git] / win32ss / gdi / diblib / BitBlt_SRCERASE.c
1
2 #include "DibLib.h"
3
4 #define __USES_SOURCE 1
5 #define __USES_PATTERN 0
6 #define __USES_DEST 1
7 #define __USES_MASK 0
8
9 #define __FUNCTIONNAME BitBlt_SRCERASE
10
11 #define _DibDoRop(pBltData, M, D, S, P) ROP_SRCERASE(D,S,P)
12
13 #include "DibLib_AllSrcBPP.h"
14
15 VOID
16 FASTCALL
17 Dib_BitBlt_SRCERASE(PBLTDATA pBltData)
18 {
19 // TODO: XLATEless same-surface variants
20 gapfnBitBlt_SRCERASE[pBltData->siDst.iFormat][pBltData->siSrc.iFormat](pBltData);
21 }
22