miqt/qt6/gen_qhashfunctions.h

35 lines
648 B
C
Raw Normal View History

#pragma once
#ifndef MIQT_QT6_GEN_QHASHFUNCTIONS_H
#define MIQT_QT6_GEN_QHASHFUNCTIONS_H
2024-10-20 18:21:03 +13:00
#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 QHashSeed;
#else
typedef struct QHashSeed QHashSeed;
#endif
2024-12-07 17:15:57 +13:00
QHashSeed* QHashSeed_new();
QHashSeed* QHashSeed_new2(size_t d);
2025-02-01 13:45:16 +13:00
QHashSeed* QHashSeed_globalSeed();
void QHashSeed_setDeterministicGlobalSeed();
void QHashSeed_resetRandomGlobalSeed();
void QHashSeed_delete(QHashSeed* self);
2024-10-20 18:21:03 +13:00
#ifdef __cplusplus
} /* extern C */
2025-02-01 13:45:16 +13:00
#endif
2024-10-20 18:21:03 +13:00
#endif