16 lines
308 B
C
16 lines
308 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright (c) 2016, Citrix Systems Inc
|
||
|
*/
|
||
|
|
||
|
#ifndef __XEN_PUBLIC_HVM_DM_OP_H__
|
||
|
#define __XEN_PUBLIC_HVM_DM_OP_H__
|
||
|
|
||
|
struct xen_dm_op_buf {
|
||
|
GUEST_HANDLE(void) h;
|
||
|
xen_ulong_t size;
|
||
|
};
|
||
|
DEFINE_GUEST_HANDLE_STRUCT(xen_dm_op_buf);
|
||
|
|
||
|
#endif /* __XEN_PUBLIC_HVM_DM_OP_H__ */
|