mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
39 lines
908 B
C++
39 lines
908 B
C++
#ifndef GEN_QLOCKFILE_H
|
|
#define GEN_QLOCKFILE_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QLockFile;
|
|
#else
|
|
typedef struct QLockFile QLockFile;
|
|
#endif
|
|
|
|
QLockFile* QLockFile_new(struct miqt_string* fileName);
|
|
bool QLockFile_Lock(QLockFile* self);
|
|
bool QLockFile_TryLock(QLockFile* self);
|
|
void QLockFile_Unlock(QLockFile* self);
|
|
void QLockFile_SetStaleLockTime(QLockFile* self, int staleLockTime);
|
|
int QLockFile_StaleLockTime(const QLockFile* self);
|
|
bool QLockFile_IsLocked(const QLockFile* self);
|
|
bool QLockFile_RemoveStaleLockFile(QLockFile* self);
|
|
int QLockFile_Error(const QLockFile* self);
|
|
bool QLockFile_TryLock1(QLockFile* self, int timeout);
|
|
void QLockFile_Delete(QLockFile* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|