mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
35 lines
666 B
C++
35 lines
666 B
C++
#pragma once
|
|
#ifndef MIQT_QT6_GEN_QHASHFUNCTIONS_H
|
|
#define MIQT_QT6_GEN_QHASHFUNCTIONS_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 QHashSeed;
|
|
#else
|
|
typedef struct QHashSeed QHashSeed;
|
|
#endif
|
|
|
|
QHashSeed* QHashSeed_new();
|
|
QHashSeed* QHashSeed_new2(size_t d);
|
|
QHashSeed* QHashSeed_GlobalSeed();
|
|
void QHashSeed_SetDeterministicGlobalSeed();
|
|
void QHashSeed_ResetRandomGlobalSeed();
|
|
void QHashSeed_Delete(QHashSeed* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|