1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-13 16:08:50 +01:00
dxvk/src/util/util_luid.h
2019-10-02 08:42:22 +02:00

16 lines
334 B
C++

#include "./com/com_include.h"
namespace dxvk {
/**
* \brief Retrieves an adapter LUID
*
* Note that this only works reliably within the
* module that this function was compiled into.
* \param [in] Adapter The adapter index
* \returns LUID An LUID for that adapter
*/
LUID GetAdapterLUID(UINT Adapter);
}