1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Add IDXGIDebug1 declaration in dxgidebug.idl.

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
This commit is contained in:
Biswapriyo Nath 2022-06-18 01:53:40 +05:30 committed by Alexandre Julliard
parent 21df12f1ac
commit 827839a616

View File

@ -244,3 +244,16 @@ interface IDXGIDebug : IUnknown
[in] GUID apiid,
[in] DXGI_DEBUG_RLO_FLAGS flags);
}
[
uuid(c5a05f0c-16f2-4adf-9f4d-a8c4d58ac550),
object,
local,
pointer_default(unique)
]
interface IDXGIDebug1 : IDXGIDebug
{
void EnableLeakTrackingForThread();
void DisableLeakTrackingForThread();
BOOL IsLeakTrackingEnabledForThread();
}