]> Git Repo - qemu.git/blob - qobject/qnull.c
qapi: Separate type QNull from QObject
[qemu.git] / qobject / qnull.c
1 /*
2  * QNull
3  *
4  * Copyright (C) 2015 Red Hat, Inc.
5  *
6  * Authors:
7  *  Markus Armbruster <[email protected]>
8  *
9  * This work is licensed under the terms of the GNU LGPL, version 2.1
10  * or later.  See the COPYING.LIB file in the top-level directory.
11  */
12
13 #include "qemu/osdep.h"
14 #include "qemu-common.h"
15 #include "qapi/qmp/qobject.h"
16
17 QNull qnull_ = {
18     .base = {
19         .type = QTYPE_QNULL,
20         .refcnt = 1,
21     },
22 };
This page took 0.024442 seconds and 4 git commands to generate.