17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync/* $Id$ */
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync/** @file
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * IPRT - NtProcessStartup stub to make the link happy.
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync */
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync/*
c7814cf6e1240a519cbec0441e033d0e2470ed00vboxsync * Copyright (C) 2009-2010 Oracle Corporation
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync *
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * available from http://www.virtualbox.org. This file is free software;
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * you can redistribute it and/or modify it under the terms of the GNU
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * General Public License (GPL) as published by the Free Software
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync *
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * The contents of this file may alternatively be used under the terms
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * of the Common Development and Distribution License Version 1.0
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * VirtualBox OSE distribution, in which case the provisions of the
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * CDDL are applicable instead of those of the GPL.
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync *
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * You may elect to license modified versions of this file under the
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync * terms and conditions of either the GPL or the CDDL or both.
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync */
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync/*******************************************************************************
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync* Header Files *
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync*******************************************************************************/
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync#include <iprt/asm.h>
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync
339e6d863649f678f74d0b85e7f0c3b58243d1f2vboxsyncextern "C" void __cdecl NtProcessStartup(void *pvIgnored);
339e6d863649f678f74d0b85e7f0c3b58243d1f2vboxsyncextern "C" void __cdecl NtProcessStartup(void *pvIgnored)
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync{
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync ASMBreakpoint();
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync NOREF(pvIgnored);
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync}
17d912a3946b2d6c0b9383d1867bc79c63e83c07vboxsync