VirtualBox

source: vbox/trunk/include/VBox/VBoxCrHgsmi.h@ 52664

Last change on this file since 52664 was 50984, checked in by vboxsync, 10 years ago

crOpenGL: command blocks: enable in guest if host supports it; bugfixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/*
2 * Copyright (C) 2010-2012 Oracle Corporation
3 *
4 * This file is part of VirtualBox Open Source Edition (OSE), as
5 * available from http://www.virtualbox.org. This file is free software;
6 * you can redistribute it and/or modify it under the terms of the GNU
7 * General Public License (GPL) as published by the Free Software
8 * Foundation, in version 2 as it comes in the "COPYING" file of the
9 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
10 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
11 *
12 * The contents of this file may alternatively be used under the terms
13 * of the Common Development and Distribution License Version 1.0
14 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
15 * VirtualBox OSE distribution, in which case the provisions of the
16 * CDDL are applicable instead of those of the GPL.
17 *
18 * You may elect to license modified versions of this file under the
19 * terms and conditions of either the GPL or the CDDL or both.
20 */
21#ifndef ___VBox_VBoxCrHgsmi_h
22#define ___VBox_VBoxCrHgsmi_h
23
24#include <iprt/cdefs.h>
25#include <VBox/VBoxUhgsmi.h>
26
27RT_C_DECLS_BEGIN
28
29#if 0
30/* enable this in case we include this in a dll*/
31# ifdef IN_VBOXCRHGSMI
32# define VBOXCRHGSMI_DECL(a_Type) DECLEXPORT(a_Type) RTCALL
33# else
34# define VBOXCRHGSMI_DECL(a_Type) DECLIMPORT(a_Type) RTCALL
35# endif
36#else
37/*enable this in case we include this in a static lib*/
38# define VBOXCRHGSMI_DECL(a_Type) a_Type RTCALL
39#endif
40
41VBOXCRHGSMI_DECL(int) VBoxCrHgsmiInit();
42VBOXCRHGSMI_DECL(PVBOXUHGSMI) VBoxCrHgsmiCreate(void);
43VBOXCRHGSMI_DECL(void) VBoxCrHgsmiDestroy(PVBOXUHGSMI pHgsmi);
44VBOXCRHGSMI_DECL(int) VBoxCrHgsmiTerm(void);
45
46VBOXCRHGSMI_DECL(int) VBoxCrHgsmiCtlConGetClientID(PVBOXUHGSMI pHgsmi, uint32_t *pu32ClientID);
47VBOXCRHGSMI_DECL(int) VBoxCrHgsmiCtlConGetHostCaps(PVBOXUHGSMI pHgsmi, uint32_t *pu32HostCaps);
48VBOXCRHGSMI_DECL(int) VBoxCrHgsmiCtlConCall(PVBOXUHGSMI pHgsmi, struct VBoxGuestHGCMCallInfo *pCallInfo, int cbCallInfo);
49
50RT_C_DECLS_END
51
52#endif
53
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use