VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.h@ 38736

Last change on this file since 38736 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/* $Revision: 28800 $ */
2/** @file
3 * VBoxGuestLibR0 - System dependent helpers internal header.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef __VBoxGuestLib_SysHlp_h
28#define __VBoxGuestLib_SysHlp_h
29
30#ifdef RT_OS_WINDOWS
31# if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK)
32# include <iprt/asm.h>
33# define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
34# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
35# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
36# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
37# pragma warning(disable : 4163)
38RT_C_DECLS_BEGIN
39# include <ntddk.h>
40RT_C_DECLS_END
41# pragma warning(default : 4163)
42# undef _InterlockedExchange
43# undef _InterlockedExchangeAdd
44# undef _InterlockedCompareExchange
45# undef _InterlockedAddLargeStatistic
46# else
47RT_C_DECLS_BEGIN
48# include <ntddk.h>
49RT_C_DECLS_END
50# endif
51/* XP DDK #defines ExFreePool to ExFreePoolWithTag. The latter does not exist on NT4, so...
52 * The same for ExAllocatePool.
53 */
54#undef ExAllocatePool
55#undef ExFreePool
56#endif
57
58typedef struct _VBGLDRIVER
59{
60#ifdef RT_OS_WINDOWS
61 PDEVICE_OBJECT pDeviceObject;
62 PFILE_OBJECT pFileObject;
63#elif defined (RT_OS_OS2)
64 uint32_t u32Session; /**< just for sanity checking. */
65#else /* PORTME */
66 void *pvOpaque;
67#endif
68} VBGLDRIVER;
69
70int vbglLockLinear (void **ppvCtx, void *pv, uint32_t u32Size, bool fWriteAccess, uint32_t fFlags);
71void vbglUnlockLinear (void *pvCtx, void *pv, uint32_t u32Size);
72
73
74#ifndef VBGL_VBOXGUEST
75
76/**
77 * Open VBoxGuest driver.
78 *
79 * @param pDriver Pointer to the driver structure.
80 *
81 * @return VBox error code
82 */
83int vbglDriverOpen (VBGLDRIVER *pDriver);
84
85/**
86 * Call VBoxGuest driver.
87 *
88 * @param pDriver Pointer to the driver structure.
89 * @param u32Function Function code.
90 * @param pvData Pointer to supplied in/out data buffer.
91 * @param cbData Size of data buffer.
92 *
93 * @return VBox error code
94 */
95int vbglDriverIOCtl (VBGLDRIVER *pDriver, uint32_t u32Function, void *pvData, uint32_t cbData);
96
97/**
98 * Close VBoxGuest driver.
99 *
100 * @param pDriver Pointer to the driver structure.
101 *
102 * @return VBox error code
103 */
104void vbglDriverClose (VBGLDRIVER *pDriver);
105
106#endif
107
108#endif /* !__VBoxGuestLib_SysHlp_h */
109
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette