1 | /*
|
---|
2 | * Copyright (C) 2010 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 |
|
---|
27 | RT_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 |
|
---|
41 | VBOXCRHGSMI_DECL(int) VBoxCrHgsmiInit();
|
---|
42 | VBOXCRHGSMI_DECL(PVBOXUHGSMI) VBoxCrHgsmiCreate(void);
|
---|
43 | VBOXCRHGSMI_DECL(void) VBoxCrHgsmiDestroy(PVBOXUHGSMI pHgsmi);
|
---|
44 | VBOXCRHGSMI_DECL(int) VBoxCrHgsmiTerm(void);
|
---|
45 |
|
---|
46 | VBOXCRHGSMI_DECL(int) VBoxCrHgsmiCtlConGetClientID(PVBOXUHGSMI pHgsmi, uint32_t *pu32ClientID);
|
---|
47 | VBOXCRHGSMI_DECL(int) VBoxCrHgsmiCtlConCall(PVBOXUHGSMI pHgsmi, struct VBoxGuestHGCMCallInfo *pCallInfo, int cbCallInfo);
|
---|
48 |
|
---|
49 | RT_C_DECLS_END
|
---|
50 |
|
---|
51 | #endif
|
---|
52 |
|
---|