1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 #include "qemu/osdep.h" 4 #include "qapi/error.h" 5 #include "qapi/qapi-commands-misc-i386.h" 6 qmp_query_sgx(Error ** errp)7SgxInfo *qmp_query_sgx(Error **errp) 8 { 9 error_setg(errp, "SGX support is not compiled in"); 10 return NULL; 11 } 12 qmp_query_sgx_capabilities(Error ** errp)13SgxInfo *qmp_query_sgx_capabilities(Error **errp) 14 { 15 error_setg(errp, "SGX support is not compiled in"); 16 return NULL; 17 } 18