87150caf549846b0edba30c50dabe5092df70b5fvboxsync/** @file
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * VBoxGuestLib - Central calls header.
87150caf549846b0edba30c50dabe5092df70b5fvboxsync */
87150caf549846b0edba30c50dabe5092df70b5fvboxsync
87150caf549846b0edba30c50dabe5092df70b5fvboxsync/*
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * Copyright (C) 2012 Oracle Corporation
87150caf549846b0edba30c50dabe5092df70b5fvboxsync *
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * available from http://www.virtualbox.org. This file is free software;
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * you can redistribute it and/or modify it under the terms of the GNU
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * General Public License (GPL) as published by the Free Software
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
87150caf549846b0edba30c50dabe5092df70b5fvboxsync *
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * The contents of this file may alternatively be used under the terms
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * of the Common Development and Distribution License Version 1.0
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * VirtualBox OSE distribution, in which case the provisions of the
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * CDDL are applicable instead of those of the GPL.
87150caf549846b0edba30c50dabe5092df70b5fvboxsync *
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * You may elect to license modified versions of this file under the
87150caf549846b0edba30c50dabe5092df70b5fvboxsync * terms and conditions of either the GPL or the CDDL or both.
87150caf549846b0edba30c50dabe5092df70b5fvboxsync */
87150caf549846b0edba30c50dabe5092df70b5fvboxsync#ifndef ___VBoxGuestR0LibCrOgl_cpp__
87150caf549846b0edba30c50dabe5092df70b5fvboxsync#define ___VBoxGuestR0LibCrOgl_cpp__
87150caf549846b0edba30c50dabe5092df70b5fvboxsync
87150caf549846b0edba30c50dabe5092df70b5fvboxsync#include <VBox/VBoxGuestLib.h>
87150caf549846b0edba30c50dabe5092df70b5fvboxsync
87150caf549846b0edba30c50dabe5092df70b5fvboxsynctypedef VBGLHGCMHANDLE HVBOXCRCTL;
87150caf549846b0edba30c50dabe5092df70b5fvboxsync
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlCreate(HVBOXCRCTL *phCtl);
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlDestroy(HVBOXCRCTL hCtl);
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlConConnect(HVBOXCRCTL hCtl, uint32_t *pu32ClientID);
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlConDisconnect(HVBOXCRCTL hCtl, uint32_t u32ClientID);
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlConCall(HVBOXCRCTL hCtl, struct VBoxGuestHGCMCallInfo *pCallInfo, int cbCallInfo);
87150caf549846b0edba30c50dabe5092df70b5fvboxsyncDECLVBGL(int) vboxCrCtlConCallUserData(HVBOXCRCTL hCtl, struct VBoxGuestHGCMCallInfo *pCallInfo, int cbCallInfo);
87150caf549846b0edba30c50dabe5092df70b5fvboxsync
87150caf549846b0edba30c50dabe5092df70b5fvboxsync#endif /* #ifndef ___VBoxGuestR0LibCrOgl_cpp__ */