]> Git Repo - qemu.git/blame - include/sysemu/rng-random.h
vhost-user-blk: Add support to reconnect backend
[qemu.git] / include / sysemu / rng-random.h
CommitLineData
5c74521d
AL
1/*
2 * QEMU Random Number Generator Backend
3 *
4 * Copyright IBM, Corp. 2012
5 *
6 * Authors:
7 * Anthony Liguori <[email protected]>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12#ifndef QEMU_RNG_RANDOM_H
13#define QEMU_RNG_RANDOM_H
14
14cccb61 15#include "qom/object.h"
5c74521d
AL
16
17#define TYPE_RNG_RANDOM "rng-random"
cde63615 18#define RNG_RANDOM(obj) OBJECT_CHECK(RngRandom, (obj), TYPE_RNG_RANDOM)
5c74521d 19
cde63615 20typedef struct RngRandom RngRandom;
5c74521d
AL
21
22#endif
This page took 0.286469 seconds and 4 git commands to generate.