mirror of https://github.com/xemu-project/xemu.git
17 lines
328 B
C
17 lines
328 B
C
/*
|
|
* QEMU Machine typedef
|
|
*
|
|
* Copyright Alexander Graf <agraf@suse.de>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMUMACHINE_H
|
|
#define QEMUMACHINE_H
|
|
|
|
typedef struct QEMUMachine QEMUMachine;
|
|
|
|
#endif /* !QEMUMACHINE_H */
|