dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync/* $Id$ */
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync/** @file
5b281ba489ca18f0380d7efc7a5108b606cce449vboxsync * IPRT - Process, Ring-0 Driver, NT.
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync */
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync *
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync * available from http://www.virtualbox.org. This file is free software;
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync * you can redistribute it and/or modify it under the terms of the GNU
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * General Public License (GPL) as published by the Free Software
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * The contents of this file may alternatively be used under the terms
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * of the Common Development and Distribution License Version 1.0
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * CDDL are applicable instead of those of the GPL.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * You may elect to license modified versions of this file under the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * terms and conditions of either the GPL or the CDDL or both.
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync */
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync/*******************************************************************************
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync* Header Files *
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync*******************************************************************************/
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync#include "the-nt-kernel.h"
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync#include <iprt/process.h>
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsyncRTDECL(RTPROCESS) RTProcSelf(void)
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync{
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync return (RTPROCESS)PsGetCurrentProcessId();
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync}
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsyncRTR0DECL(RTR0PROCESS) RTR0ProcHandleSelf(void)
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync{
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync return (RTR0PROCESS)PsGetCurrentProcess();
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync}
dba6b8a60465a62d3e1ee74942535288802e2b79vboxsync