First commit.
[temp2RGB.git] / IntelArc / IntelArc.h
1 #pragma once
2
3 #include "igcl_api.h"
4
5 int __stdcall arc_test();
6
7 struct Devices {
8 ctl_api_handle_t hAPIHandle;
9 ctl_device_adapter_handle_t* handles;
10 uint32_t nb_devices;
11 };
12
13 Devices __stdcall GetDevices();
14 bool __stdcall FreeDevices(Devices devices);
15
16 double __stdcall GetTemperature(Devices devices, uint32_t n);
17
18 //void __stdcall SetRGB(Devices devices, uint32_t n, unsigned char r, unsigned char g, unsigned char b);