mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
81 lines
4.7 KiB
C++
81 lines
4.7 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_GEN_QRANDOM_H
|
|
#define MIQT_QT6_GEN_QRANDOM_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QRandomGenerator;
|
|
class QRandomGenerator64;
|
|
#else
|
|
typedef struct QRandomGenerator QRandomGenerator;
|
|
typedef struct QRandomGenerator64 QRandomGenerator64;
|
|
#endif
|
|
|
|
void QRandomGenerator_new(QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator_new2(const unsigned int* seedBuffer, ptrdiff_t lenVal, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator_new3(const unsigned int* begin, const unsigned int* end, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator_new4(QRandomGenerator* other, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator_new5(unsigned int seedValue, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator_OperatorAssign(QRandomGenerator* self, QRandomGenerator* other);
|
|
unsigned int QRandomGenerator_Generate(QRandomGenerator* self);
|
|
unsigned long long QRandomGenerator_Generate64(QRandomGenerator* self);
|
|
double QRandomGenerator_GenerateDouble(QRandomGenerator* self);
|
|
double QRandomGenerator_Bounded(QRandomGenerator* self, double highest);
|
|
unsigned int QRandomGenerator_BoundedWithHighest(QRandomGenerator* self, unsigned int highest);
|
|
unsigned int QRandomGenerator_Bounded2(QRandomGenerator* self, unsigned int lowest, unsigned int highest);
|
|
int QRandomGenerator_Bounded3(QRandomGenerator* self, int highest);
|
|
int QRandomGenerator_Bounded4(QRandomGenerator* self, int lowest, int highest);
|
|
unsigned long long QRandomGenerator_Bounded5(QRandomGenerator* self, unsigned long long highest);
|
|
unsigned long long QRandomGenerator_Bounded6(QRandomGenerator* self, unsigned long long lowest, unsigned long long highest);
|
|
long long QRandomGenerator_Bounded7(QRandomGenerator* self, long long highest);
|
|
long long QRandomGenerator_Bounded8(QRandomGenerator* self, long long lowest, long long highest);
|
|
long long QRandomGenerator_Bounded9(QRandomGenerator* self, int lowest, long long highest);
|
|
long long QRandomGenerator_Bounded10(QRandomGenerator* self, long long lowest, int highest);
|
|
unsigned long long QRandomGenerator_Bounded11(QRandomGenerator* self, unsigned int lowest, unsigned long long highest);
|
|
unsigned long long QRandomGenerator_Bounded12(QRandomGenerator* self, unsigned long long lowest, unsigned int highest);
|
|
void QRandomGenerator_Generate2(QRandomGenerator* self, unsigned int* begin, unsigned int* end);
|
|
unsigned int QRandomGenerator_OperatorCall(QRandomGenerator* self);
|
|
void QRandomGenerator_Seed(QRandomGenerator* self);
|
|
void QRandomGenerator_Discard(QRandomGenerator* self, unsigned long long z);
|
|
unsigned int QRandomGenerator_Min();
|
|
unsigned int QRandomGenerator_Max();
|
|
QRandomGenerator* QRandomGenerator_System();
|
|
QRandomGenerator* QRandomGenerator_Global();
|
|
QRandomGenerator* QRandomGenerator_SecurelySeeded();
|
|
void QRandomGenerator_Seed1(QRandomGenerator* self, unsigned int s);
|
|
void QRandomGenerator_Delete(QRandomGenerator* self, bool isSubclass);
|
|
|
|
void QRandomGenerator64_new(QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator64_new2(const unsigned int* seedBuffer, ptrdiff_t lenVal, QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator64_new3(const unsigned int* begin, const unsigned int* end, QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator64_new4(QRandomGenerator* other, QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator64_new5(QRandomGenerator64* param1, QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
void QRandomGenerator64_new6(unsigned int seedValue, QRandomGenerator64** outptr_QRandomGenerator64, QRandomGenerator** outptr_QRandomGenerator);
|
|
unsigned long long QRandomGenerator64_Generate(QRandomGenerator64* self);
|
|
unsigned long long QRandomGenerator64_OperatorCall(QRandomGenerator64* self);
|
|
void QRandomGenerator64_Discard(QRandomGenerator64* self, unsigned long long z);
|
|
unsigned long long QRandomGenerator64_Min();
|
|
unsigned long long QRandomGenerator64_Max();
|
|
QRandomGenerator64* QRandomGenerator64_System();
|
|
QRandomGenerator64* QRandomGenerator64_Global();
|
|
QRandomGenerator64* QRandomGenerator64_SecurelySeeded();
|
|
void QRandomGenerator64_OperatorAssign(QRandomGenerator64* self, QRandomGenerator64* param1);
|
|
void QRandomGenerator64_Delete(QRandomGenerator64* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|