File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#define true 1
4
4
#define false 0
5
- #define bool unsigned __int8
5
+ typedef unsigned __int8 bool ;
6
6
7
- #define uint8 unsigned __int8
8
- #define uint32 unsigned __int32
9
- #define uint16 unsigned __int16
10
- #define uint64 unsigned __int64
7
+ typedef unsigned __int8 uint8 ;
8
+ typedef unsigned __int32 uint32 ;
9
+ typedef unsigned __int16 uint16 ;
10
+ typedef unsigned __int64 uint64 ;
11
11
12
- // # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
12
+ /*************************** CPU SUPPORT ****************************/
13
13
14
14
typedef struct {
15
15
uint32 EAX ;
@@ -39,7 +39,7 @@ __declspec(dllexport) uint32 GetSupportedInstructions()
39
39
return 0 ;
40
40
}
41
41
42
- // # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
42
+ /***************************** NUMBERS ******************************/
43
43
44
44
__declspec(dllexport ) bool ReadSeed16 (uint16 * random )
45
45
{
@@ -107,7 +107,7 @@ __declspec(dllexport) bool ReadRandom64(uint64* random)
107
107
else goto RETRY ;
108
108
}
109
109
110
- // # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
110
+ /***************************** BUFFERS ******************************/
111
111
112
112
typedef union
113
113
{
You can’t perform that action at this time.
0 commit comments