]> Git Repo - qemu.git/blame_incremental - qint.h
Revert "monitor: Command-line flag to enable control mode"
[qemu.git] / qint.h
... / ...
CommitLineData
1#ifndef QINT_H
2#define QINT_H
3
4#include <stdint.h>
5#include "qobject.h"
6
7typedef struct QInt {
8 QObject_HEAD;
9 int64_t value;
10} QInt;
11
12QInt *qint_from_int(int64_t value);
13int64_t qint_get_int(const QInt *qi);
14QInt *qobject_to_qint(const QObject *obj);
15
16#endif /* QINT_H */
This page took 0.020679 seconds and 4 git commands to generate.