mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 17:32:04 +00:00
19 lines
486 B
C
19 lines
486 B
C
/* -*- mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2017 Christian J. Kellner <christian@kellner.me>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#ifndef __FU_PLUGIN_THUNDERBOLT_H__
|
|
#define __FU_PLUGIN_THUNDERBOLT_H__
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_PLUGIN_THUNDERBOLT_UPDATE_TIMEOUT_MS 60 * 1000
|
|
|
|
void fu_plugin_thunderbolt_set_timeout (FuPlugin *plugin,
|
|
guint timeout_ms);
|
|
|
|
#endif /* __FU_PLUGIN_THUNDERBOLT_H__ */
|