715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/** @file
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * VBoxGuest - Mangling of IPRT symbols for guest drivers.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * This is included via a compiler directive on platforms with a global kernel
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * symbol name space (i.e. not Windows, OS/2 and Mac OS X (?)).
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync */
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/*
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Copyright (C) 2011 Oracle Corporation
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * available from http://www.virtualbox.org. This file is free software;
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * you can redistribute it and/or modify it under the terms of the GNU
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * General Public License (GPL) as published by the Free Software
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * The contents of this file may alternatively be used under the terms
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * of the Common Development and Distribution License Version 1.0
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * VirtualBox OSE distribution, in which case the provisions of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * CDDL are applicable instead of those of the GPL.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * You may elect to license modified versions of this file under the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * terms and conditions of either the GPL or the CDDL or both.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync */
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync#define RT_MANGLER(symbol) VBoxGuest_##symbol
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync#include <iprt/mangling.h>
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync