fwupd/plugins/dfu/fu-dfu-target-avr.h
Richard Hughes 8aebd44404 dfu: Modernize the coding style to match the other plugings
Use a Fu prefix for source objects and files and use @self.

No logic changes.
2021-02-24 10:36:45 +00:00

23 lines
467 B
C

/*
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <glib-object.h>
#include <gio/gio.h>
#include "fu-dfu-target.h"
#define FU_TYPE_DFU_TARGET_AVR (fu_dfu_target_avr_get_type ())
G_DECLARE_DERIVABLE_TYPE (FuDfuTargetAvr, fu_dfu_target_avr, FU, DFU_TARGET_AVR, FuDfuTarget)
struct _FuDfuTargetAvrClass
{
FuDfuTargetClass parent_class;
};
FuDfuTarget *fu_dfu_target_avr_new (void);