21 lines
429 B
C
21 lines
429 B
C
![]() |
/*
|
||
|
* Policy for handling "funny" management interfaces
|
||
|
*
|
||
|
* Copyright (C) 2020 Red Hat, Inc.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Markus Armbruster <armbru@redhat.com>
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
||
|
* later. See the COPYING file in the top-level directory.
|
||
|
*/
|
||
|
|
||
|
#ifndef QAPI_COMPAT_POLICY_H
|
||
|
#define QAPI_COMPAT_POLICY_H
|
||
|
|
||
|
#include "qapi/qapi-types-compat.h"
|
||
|
|
||
|
extern CompatPolicy compat_policy;
|
||
|
|
||
|
#endif
|