xref: /haiku/src/add-ons/kernel/bus_managers/random/yarrow_rng.h (revision 5ac9b506412b11afb993bb52d161efe7666958a5)
1 /*
2  * Copyright 2013, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jérôme Duval, korli@berlios.de
7  */
8 #ifndef _YARROW_RNG_H
9 #define _YARROW_RNG_H
10 
11 
12 #include <OS.h>
13 
14 #include "random.h"
15 
16 
17 #define YARROW_RNG_SIM_MODULE_NAME "bus_managers/random/yarrow_rng/device/v1"
18 
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 
25 extern random_module_info gYarrowRandomModule;
26 
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 
33 #endif /* _YARROW_RNG_H */
34