include: Add some missing DDLOCK constants.
This commit is contained in:
parent
a206f43648
commit
e1f6a81a2d
|
@ -1397,14 +1397,18 @@ DECLARE_INTERFACE_(IDirectDraw,IUnknown)
|
|||
|
||||
|
||||
/* flags for Lock() */
|
||||
#define DDLOCK_SURFACEMEMORYPTR 0x00000000
|
||||
#define DDLOCK_WAIT 0x00000001
|
||||
#define DDLOCK_EVENT 0x00000002
|
||||
#define DDLOCK_READONLY 0x00000010
|
||||
#define DDLOCK_WRITEONLY 0x00000020
|
||||
#define DDLOCK_NOSYSLOCK 0x00000800
|
||||
#define DDLOCK_NOOVERWRITE 0x00001000
|
||||
#define DDLOCK_DISCARDCONTENTS 0x00002000
|
||||
#define DDLOCK_SURFACEMEMORYPTR __MSABI_LONG(0x00000000)
|
||||
#define DDLOCK_WAIT __MSABI_LONG(0x00000001)
|
||||
#define DDLOCK_EVENT __MSABI_LONG(0x00000002)
|
||||
#define DDLOCK_READONLY __MSABI_LONG(0x00000010)
|
||||
#define DDLOCK_WRITEONLY __MSABI_LONG(0x00000020)
|
||||
#define DDLOCK_NOSYSLOCK __MSABI_LONG(0x00000800)
|
||||
#define DDLOCK_NOOVERWRITE __MSABI_LONG(0x00001000)
|
||||
#define DDLOCK_DISCARDCONTENTS __MSABI_LONG(0x00002000)
|
||||
#define DDLOCK_OKTOSWAP __MSABI_LONG(0x00002000)
|
||||
#define DDLOCK_DONOTWAIT __MSABI_LONG(0x00004000)
|
||||
#define DDLOCK_HASVOLUMETEXTUREBOXRECT __MSABI_LONG(0x00008000)
|
||||
#define DDLOCK_NODIRTYUPDATE __MSABI_LONG(0x00010000)
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
|
|
Loading…
Reference in New Issue