LeviLamina
Loading...
Searching...
No Matches
Random.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7struct Random {
8public:
9 // member functions
10 // NOLINTBEGIN
11 MCAPI int Rand(int, int);
12
13 MCAPI uint Rand(uint);
14
15 MCAPI uint Rand(uint, uint);
16
17 MCAPI explicit Random(uint64);
18 // NOLINTEND
19
20public:
21 // constructor thunks
22 // NOLINTBEGIN
23 MCAPI void* $ctor(uint64);
24 // NOLINTEND
25};
26
27} // namespace webrtc
Definition Random.h:7