mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 11:43:59 +01:00
30 lines
1.4 KiB
C
30 lines
1.4 KiB
C
|
/*!
|
||
|
* Copyright (c) 2021 TUXEDO Computers GmbH <tux@tuxedocomputers.com>
|
||
|
*
|
||
|
* This file is part of tuxedo-keyboard.
|
||
|
*
|
||
|
* tuxedo-keyboard is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This software is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this software. If not, see <https://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
#define UNIWILL_WMI_MGMT_GUID_BA "ABBC0F6D-8EA1-11D1-00A0-C90629100000"
|
||
|
#define UNIWILL_WMI_MGMT_GUID_BB "ABBC0F6E-8EA1-11D1-00A0-C90629100000"
|
||
|
#define UNIWILL_WMI_MGMT_GUID_BC "ABBC0F6F-8EA1-11D1-00A0-C90629100000"
|
||
|
|
||
|
#define UNIWILL_WMI_EVENT_GUID_0 "ABBC0F70-8EA1-11D1-00A0-C90629100000"
|
||
|
#define UNIWILL_WMI_EVENT_GUID_1 "ABBC0F71-8EA1-11D1-00A0-C90629100000"
|
||
|
#define UNIWILL_WMI_EVENT_GUID_2 "ABBC0F72-8EA1-11D1-00A0-C90629100000"
|
||
|
|
||
|
#define MODULE_ALIAS_UNIWILL_WMI() \
|
||
|
MODULE_ALIAS("wmi:" UNIWILL_WMI_EVENT_GUID_2); \
|
||
|
MODULE_ALIAS("wmi:" UNIWILL_WMI_MGMT_GUID_BC);
|