OpenRGB/Controllers/EVGAGPUController/EVGAGPUCommon.h
2021-12-02 05:53:27 +00:00

19 lines
No EOL
625 B
C

/*-------------------------------------------------------------------*\
| EVGAGPUCommon.h |
| |
| Common classes and functions for EVGA GPUs |
| |
| Chris M (Dr_No) 11th July 2021 |
\*-------------------------------------------------------------------*/
#pragma once
union u16_to_u8
{
uint16_t u16;
struct
{
uint8_t LSB;
uint8_t MSB;
};
};