Add sqlite and start work on comunication protocol

This commit is contained in:
2025-01-24 15:57:23 +01:00
parent a226d0f156
commit 4da7788a15
9 changed files with 266 additions and 31 deletions

3
shared/inc/NetConst.hpp Normal file
View File

@@ -0,0 +1,3 @@
#include <cinttypes>
constexpr uint64_t StartHeader = 1737720524UL;

View File

@@ -13,4 +13,5 @@ namespace mrand
uint128 getState(unsigned long long seed);
float getFloat(uint128 *state);
int getValue(int min, int max, uint128 *state);
unsigned int computeCRC32(void *data, int dataSize);
}