Last change
on this file since 31431 was 31431, checked in by vboxsync, 14 years ago |
File properties.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.1 KB
|
Line | |
---|
1 | /* $Id: */
|
---|
2 | /** @file
|
---|
3 | * VBoxHelper - Guest Additions Driver helper routines.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___VBoxGuestHelper_h
|
---|
19 | #define ___VBoxGuestHelper_h
|
---|
20 |
|
---|
21 | /**
|
---|
22 | * Helper to report the guest information to host.
|
---|
23 | *
|
---|
24 | * @return IPRT status code.
|
---|
25 | * @param enmOSType The OS type to report.
|
---|
26 | */
|
---|
27 | int VBoxReportGuestInfo(VBOXOSTYPE enmOSType);
|
---|
28 |
|
---|
29 | /**
|
---|
30 | * Helper to report the guest driver status to host.
|
---|
31 | *
|
---|
32 | * @return IPRT status code.
|
---|
33 | * @param fActive Flag whether the driver is now active or not.
|
---|
34 | */
|
---|
35 | int VBoxReportGuestDriverStatus(bool fActive);
|
---|
36 |
|
---|
37 | #endif /* ___VBoxGuestHelper_h */
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.