reactos/win32ss/gdi/diblib/DibLib_AllDstBPP.h
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

47 lines
936 B
C

#ifndef __DIB_FUNCTION_NAME
#define __DIB_FUNCTION_NAME __DIB_FUNCTION_NAME_DST
#endif
#ifndef _SOURCE_BPP
#define _SOURCE_BPP 0
#endif
#define _DEST_BPP 1
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#define _DEST_BPP 4
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#define _DEST_BPP 8
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#define _DEST_BPP 16
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#define _DEST_BPP 24
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#define _DEST_BPP 32
#include "DibLib_BitBlt.h"
#undef _DEST_BPP
#if (__USES_SOURCE == 0)
PFN_DIBFUNCTION
__PASTE(gapfn, __FUNCTIONNAME)[7] =
{
0,
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 1),
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 4),
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 8),
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 16),
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 24),
__DIB_FUNCTION_NAME_DST(__FUNCTIONNAME, 0, 32)
};
#endif