mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-01 19:37:47 +00:00
25 lines
605 B
C
25 lines
605 B
C
/*
|
|
* Copyright (C) 2018-2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-plugin-vfuncs.h"
|
|
#include "fu-wacom-aes-device.h"
|
|
#include "fu-wacom-emr-device.h"
|
|
#include "fu-wacom-common.h"
|
|
|
|
void
|
|
fu_plugin_init (FuPlugin *plugin)
|
|
{
|
|
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
|
|
fu_plugin_add_rule (plugin, FU_PLUGIN_RULE_SUPPORTS_PROTOCOL, "com.wacom.raw");
|
|
fu_plugin_add_udev_subsystem (plugin, "hidraw");
|
|
|
|
/* register the custom types */
|
|
g_type_ensure (FU_TYPE_WACOM_AES_DEVICE);
|
|
g_type_ensure (FU_TYPE_WACOM_EMR_DEVICE);
|
|
}
|