You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
308 B
16 lines
308 B
/* 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__ */
|