summaryrefslogtreecommitdiffstats
path: root/include/sysemu/rng-random.h
blob: 58033ac3fecf2f8e81387977e450054742be89f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * QEMU Random Number Generator Backend
 *
 * Copyright IBM, Corp. 2012
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.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 QEMU_RNG_RANDOM_H
#define QEMU_RNG_RANDOM_H

#include "qom/object.h"

#define TYPE_RNG_RANDOM "rng-random"
typedef struct RngRandom RngRandom;
DECLARE_INSTANCE_CHECKER(RngRandom, RNG_RANDOM,
                         TYPE_RNG_RANDOM)


#endif