Hi guys, this is my first post here. I started learning C++ this year, so I'm not very good at this. I was trying to make my software get the temperature of my graphics cards, which is a couple of AMD 6870's. I was using an API made by AMD, but had no success.
The include that have the structure which I'm trying to use:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/////////////////////////////////////////////////////////////////////////////////////////////
///\brief Structure containing information about thermal controller temperature.
///
/// This structure is used to store information about thermal controller temperature.
/// This structure is used by the ADL_PM_Temperature_Get() function.
/// \nosubgrouping
////////////////////////////////////////////////////////////////////////////////////////////
typedefstruct ADLTemperature
{
/// Must be set to the size of the structure
int iSize;
/// Temperature in millidegrees Celsius.
int iTemperature;
} ADLTemperature;
This is just a part of him.
Here goes the rest of the unusual includes that I'm using: