Generic device guard; use Corsair implementation for all Corsair HID cooling-capable controllers
This commit is contained in:
parent
c5c5bf519b
commit
f672397563
15 changed files with 387 additions and 109 deletions
22
interop/DeviceGuard.cpp
Normal file
22
interop/DeviceGuard.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuard.cpp |
|
||||
| |
|
||||
| An abstract interface for acquiring and releasing |
|
||||
| a guard on a device, serving as a foundation for |
|
||||
| implementing device-specific synchronization mechanisms. |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuard.h"
|
||||
|
||||
DeviceGuard::DeviceGuard()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
DeviceGuard::~DeviceGuard()
|
||||
{
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue