Commit 9b1b70c7 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

dxgi.idl: Added DXGI_SWAP_CHAIN_FLAG enum declaration and DXGI_MWA_* flags.

parent 08186a9c
......@@ -115,6 +115,12 @@ typedef struct DXGI_ADAPTER_DESC {
LUID AdapterLuid;
} DXGI_ADAPTER_DESC;
typedef enum DXGI_SWAP_CHAIN_FLAG {
DXGI_SWAP_CHAIN_FLAG_NONPREROTATED = 1,
DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH = 2,
DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE = 4
} DXGI_SWAP_CHAIN_FLAG;
typedef struct DXGI_SWAP_CHAIN_DESC {
DXGI_MODE_DESC BufferDesc;
DXGI_SAMPLE_DESC SampleDesc;
......@@ -305,6 +311,11 @@ interface IDXGISwapChain : IDXGIDeviceSubObject
);
}
cpp_quote("#define DXGI_MWA_NO_WINDOW_CHANGES 0x1")
cpp_quote("#define DXGI_MWA_NO_ALT_ENTER 0x2")
cpp_quote("#define DXGI_MWA_NO_PRINT_SCREEN 0x4")
cpp_quote("#define DXGI_MWA_VALID 0x7")
[
object,
local,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment