https://github.com/qemu/qemu
Raw File
Tip revision: fe1b69708c72b163d3acdf2bb012e169d2d3dda0 authored by Anthony Liguori on 20 December 2009, 01:31:18 UTC
Update version and changelog for 0.12.1
Tip revision: fe1b697
qint.h
#ifndef QINT_H
#define QINT_H

#include <stdint.h>
#include "qobject.h"

typedef struct QInt {
    QObject_HEAD;
    int64_t value;
} QInt;

QInt *qint_from_int(int64_t value);
int64_t qint_get_int(const QInt *qi);
QInt *qobject_to_qint(const QObject *obj);

#endif /* QINT_H */
back to top