Actually export the C Interface.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-07-19 10:44:54 +02:00
parent b55e0c5473
commit 0295bb949a
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 14 additions and 12 deletions

View File

@ -1,20 +1,22 @@
#include "../src/Random.hpp"
ArbUt::Random* Arbutils_Random_Construct() { return new ArbUt::Random(); }
ArbUt::Random* Arbutils_Random_ConstructWithSeed(uint_fast32_t seed) { return new ArbUt::Random(seed); }
#define export extern "C"
void Arbutils_Random_Destruct(ArbUt::Random* p) { delete p; }
export ArbUt::Random* Arbutils_Random_Construct() { return new ArbUt::Random(); }
export ArbUt::Random* Arbutils_Random_ConstructWithSeed(uint_fast32_t seed) { return new ArbUt::Random(seed); }
float Arbutils_Random_GetFloat(ArbUt::Random* p) { return p->GetFloat(); }
double Arbutils_Random_GetDouble(ArbUt::Random* p) { return p->GetDouble(); }
int32_t Arbutils_Random_Get(ArbUt::Random* p) { return p->Get(); }
int32_t Arbutils_Random_GetWithMax(ArbUt::Random* p, int32_t max) { return p->Get(max); }
int32_t Arbutils_Random_GetInLimits(ArbUt::Random* p, int32_t min, int32_t max) { return p->Get(min, max); }
export void Arbutils_Random_Destruct(ArbUt::Random* p) { delete p; }
uint32_t Arbutils_Random_GetUnsigned(ArbUt::Random* p) { return p->GetUnsigned(); }
uint32_t Arbutils_Random_GetUnsignedWithMax(ArbUt::Random* p, uint32_t max) { return p->GetUnsigned(max); }
uint32_t Arbutils_Random_GetUnsignedInLimits(ArbUt::Random* p, uint32_t min, uint32_t max) {
export float Arbutils_Random_GetFloat(ArbUt::Random* p) { return p->GetFloat(); }
export double Arbutils_Random_GetDouble(ArbUt::Random* p) { return p->GetDouble(); }
export int32_t Arbutils_Random_Get(ArbUt::Random* p) { return p->Get(); }
export int32_t Arbutils_Random_GetWithMax(ArbUt::Random* p, int32_t max) { return p->Get(max); }
export int32_t Arbutils_Random_GetInLimits(ArbUt::Random* p, int32_t min, int32_t max) { return p->Get(min, max); }
export uint32_t Arbutils_Random_GetUnsigned(ArbUt::Random* p) { return p->GetUnsigned(); }
export uint32_t Arbutils_Random_GetUnsignedWithMax(ArbUt::Random* p, uint32_t max) { return p->GetUnsigned(max); }
export uint32_t Arbutils_Random_GetUnsignedInLimits(ArbUt::Random* p, uint32_t min, uint32_t max) {
return p->GetUnsigned(min, max);
}
uint_fast32_t Arbutils_Random_GetSeed(ArbUt::Random* p) { return p->GetSeed(); }
export uint_fast32_t Arbutils_Random_GetSeed(ArbUt::Random* p) { return p->GetSeed(); }