mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
28 lines
1.4 KiB
C++
28 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <ostream>
|
|
|
|
#include <d3d.h>
|
|
#include <d3dumddi.h>
|
|
#include <winternl.h>
|
|
#include <d3dkmthk.h>
|
|
|
|
#include <D3dDdi/Log/CommonLog.h>
|
|
|
|
std::ostream& operator<<(std::ostream& os, const LUID& luid);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_CREATECONTEXT& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_CREATECONTEXTVIRTUAL& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_CREATEDCFROMMEMORY& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_CREATEDEVICE& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_DESTROYCONTEXT& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_DESTROYDEVICE& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_OPENADAPTERFROMHDC& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_PRESENT& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_QUERYADAPTERINFO& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SETGAMMARAMP& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SETQUEUEDLIMIT& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SETVIDPNSOURCEOWNER& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SETVIDPNSOURCEOWNER1& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SUBMITPRESENTTOHWQUEUE& data);
|
|
std::ostream& operator<<(std::ostream& os, const D3DKMT_SUBMITPRESENTBLTTOHWQUEUE& data);
|