68fce2926ac031f46c25460569296f66620e9d52vboxsync/* $Id$ */
68fce2926ac031f46c25460569296f66620e9d52vboxsync/** @file
68fce2926ac031f46c25460569296f66620e9d52vboxsync * IPRT R0 Testcase - Debug kernel information, common header.
68fce2926ac031f46c25460569296f66620e9d52vboxsync */
68fce2926ac031f46c25460569296f66620e9d52vboxsync
68fce2926ac031f46c25460569296f66620e9d52vboxsync/*
68fce2926ac031f46c25460569296f66620e9d52vboxsync * Copyright (C) 2012 Oracle Corporation
68fce2926ac031f46c25460569296f66620e9d52vboxsync *
68fce2926ac031f46c25460569296f66620e9d52vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
68fce2926ac031f46c25460569296f66620e9d52vboxsync * available from http://www.virtualbox.org. This file is free software;
68fce2926ac031f46c25460569296f66620e9d52vboxsync * you can redistribute it and/or modify it under the terms of the GNU
68fce2926ac031f46c25460569296f66620e9d52vboxsync * General Public License (GPL) as published by the Free Software
68fce2926ac031f46c25460569296f66620e9d52vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
68fce2926ac031f46c25460569296f66620e9d52vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
68fce2926ac031f46c25460569296f66620e9d52vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
68fce2926ac031f46c25460569296f66620e9d52vboxsync *
68fce2926ac031f46c25460569296f66620e9d52vboxsync * The contents of this file may alternatively be used under the terms
68fce2926ac031f46c25460569296f66620e9d52vboxsync * of the Common Development and Distribution License Version 1.0
68fce2926ac031f46c25460569296f66620e9d52vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
68fce2926ac031f46c25460569296f66620e9d52vboxsync * VirtualBox OSE distribution, in which case the provisions of the
68fce2926ac031f46c25460569296f66620e9d52vboxsync * CDDL are applicable instead of those of the GPL.
68fce2926ac031f46c25460569296f66620e9d52vboxsync *
68fce2926ac031f46c25460569296f66620e9d52vboxsync * You may elect to license modified versions of this file under the
68fce2926ac031f46c25460569296f66620e9d52vboxsync * terms and conditions of either the GPL or the CDDL or both.
68fce2926ac031f46c25460569296f66620e9d52vboxsync */
68fce2926ac031f46c25460569296f66620e9d52vboxsync
68fce2926ac031f46c25460569296f66620e9d52vboxsync#ifdef IN_RING0
68fce2926ac031f46c25460569296f66620e9d52vboxsyncRT_C_DECLS_BEGIN
68fce2926ac031f46c25460569296f66620e9d52vboxsyncDECLEXPORT(int) TSTR0DbgKrnlInfoSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation,
68fce2926ac031f46c25460569296f66620e9d52vboxsync uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr);
68fce2926ac031f46c25460569296f66620e9d52vboxsyncRT_C_DECLS_END
68fce2926ac031f46c25460569296f66620e9d52vboxsync#endif
68fce2926ac031f46c25460569296f66620e9d52vboxsync
68fce2926ac031f46c25460569296f66620e9d52vboxsynctypedef enum TSTR0DBGKRNLINFO
68fce2926ac031f46c25460569296f66620e9d52vboxsync{
68fce2926ac031f46c25460569296f66620e9d52vboxsync TSTRTR0DBGKRNLINFO_SANITY_OK = 1,
68fce2926ac031f46c25460569296f66620e9d52vboxsync TSTRTR0DBGKRNLINFO_SANITY_FAILURE,
68fce2926ac031f46c25460569296f66620e9d52vboxsync TSTRTR0DBGKRNLINFO_BASIC
68fce2926ac031f46c25460569296f66620e9d52vboxsync} TSTR0DBGKRNLINFO;
68fce2926ac031f46c25460569296f66620e9d52vboxsync