1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #include "rkaiq_dehaze.h"
|
| RKAiqToolDehaze::RKAiqToolDehaze()
| {
| }
|
| RKAiqToolDehaze::~RKAiqToolDehaze()
| {
| }
|
| int RKAiqToolDehaze::SetAttrib(adehaze_sw_t attr, int cmdID)
| {
| return RkAiqSocketClientINETSend(cmdID, (void*)&attr, sizeof(adehaze_sw_t));
| }
|
| int RKAiqToolDehaze::GetAttrib(adehaze_sw_t* attr, int cmdID)
| {
| return RkAiqSocketClientINETReceive(cmdID, (void*)attr, sizeof(adehaze_sw_t));
| }
|
|