mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-04 12:43:39 -04:00
Update file header comments to standardized new format for Asus TUF laptop files
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopController_Linux.cpp |
|
||||
| |
|
||||
| Driver for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string>
|
||||
#include "AsusTUFLaptopController_Linux.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
#ifndef ASUSTUFLAPTOPLINUXCONTROLLER_H
|
||||
#define ASUSTUFLAPTOPLINUXCONTROLLER_H
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopController_Linux.h |
|
||||
| |
|
||||
| Driver for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
|
||||
@@ -33,5 +41,3 @@ public:
|
||||
unsigned char blue
|
||||
);
|
||||
};
|
||||
|
||||
#endif // ASUSTUFLAPTOPLINUXCONTROLLER_H
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopController_Windows.cpp |
|
||||
| |
|
||||
| Driver for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopController_Windows.h |
|
||||
| |
|
||||
| Driver for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopDetect_Linux.cpp |
|
||||
| |
|
||||
| Detector for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string>
|
||||
#include <unistd.h>
|
||||
#include "Detector.h"
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
#ifdef _WIN32
|
||||
/*---------------------------------------------------------*\
|
||||
| AsusTUFLaptopDetect_Windows.cpp |
|
||||
| |
|
||||
| Detector for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string>
|
||||
#include "Detector.h"
|
||||
@@ -43,5 +50,3 @@ static void DetectAsusTUFLaptopWMIControllers()
|
||||
} /* DetectAsusTUFLaptopWMIControllers() */
|
||||
|
||||
REGISTER_DETECTOR("ASUS TUF Laptop", DetectAsusTUFLaptopWMIControllers);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_AsusTUFLaptop_Linux.cpp |
|
||||
| |
|
||||
| RGBController for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_AsusTUFLaptop_Linux.h"
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_AsusTUFLaptop_Linux.h |
|
||||
| |
|
||||
| RGBController for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
#ifdef _WIN32
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_AsusTUFLaptop_Windows.cpp |
|
||||
| |
|
||||
| RGBController for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_AsusTUFLaptop_Windows.h"
|
||||
|
||||
@@ -172,5 +179,3 @@ void RGBController_AsusTUFLaptopWMI::DeviceSaveMode()
|
||||
{
|
||||
ControllerSetMode(true);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_AsusTUFLaptop_Windows.h |
|
||||
| |
|
||||
| RGBController for ASUS TUF laptop |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "AsusTUFLaptopController_Windows.h"
|
||||
|
||||
Reference in New Issue
Block a user