mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
30 lines
414 B
C
30 lines
414 B
C
|
#pragma once
|
||
|
|
||
|
#include <Windows.h>
|
||
|
#include <SetupAPI.h>
|
||
|
#include <vector>
|
||
|
|
||
|
class CIVSHMEM
|
||
|
{
|
||
|
private:
|
||
|
struct IVSHMEMData
|
||
|
{
|
||
|
SP_DEVINFO_DATA devInfoData;
|
||
|
DWORD64 busAddr;
|
||
|
};
|
||
|
|
||
|
std::vector<struct IVSHMEMData> m_devices;
|
||
|
HANDLE m_handle = INVALID_HANDLE_VALUE;
|
||
|
size_t m_size;
|
||
|
void * m_mem = nullptr;
|
||
|
|
||
|
public:
|
||
|
CIVSHMEM();
|
||
|
~CIVSHMEM();
|
||
|
|
||
|
bool Init();
|
||
|
bool Open();
|
||
|
void Close();
|
||
|
};
|
||
|
|