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