mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
more compatible fix betwin reactos ddk and ms DDK version 3790.1830
svn path=/trunk/; revision=26215
This commit is contained in:
parent
043a16c1dc
commit
1ca4f18dc7
1 changed files with 10 additions and 0 deletions
10
reactos/include/ddk/d3dhalex.h
Normal file
10
reactos/include/ddk/d3dhalex.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
|
||||
#ifndef _D3DHALEX_H
|
||||
#define _D3DHALEX_H
|
||||
#define D3DGDI_IS_GDI2(pData) ((((DD_GETDRIVERINFO2DATA*)(pData->lpvData))->dwMagic) == D3DGDI2_MAGIC)
|
||||
#define D3DGDI_IS_STEREOMODE(pData) ((((DD_STEREOMODE*) (pData->lpvData))->dwHeight) != D3DGDI2_MAGIC)
|
||||
#define D3DGDI_GET_GDI2_DATA(pData) (D3DGDI_IS_GDI2(pData) ? (((DD_GETDRIVERINFO2DATA*)(pData->lpvData))) : NULL)
|
||||
#define D3DGDI_GET_STEREOMODE_DATA(pData) (D3DGDI_IS_STEREOMODE(pData) ? (((DD_STEREOMODE*)(pData->lpvData))) : NULL)
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue