2
0

rng-random.h 444 B

123456789101112131415161718192021
  1. /*
  2. * QEMU Random Number Generator Backend
  3. *
  4. * Copyright IBM, Corp. 2012
  5. *
  6. * Authors:
  7. * Anthony Liguori <aliguori@us.ibm.com>
  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. #include "qom/object.h"
  15. #define TYPE_RNG_RANDOM "rng-random"
  16. OBJECT_DECLARE_SIMPLE_TYPE(RngRandom, RNG_RANDOM)
  17. #endif