VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.h@ 58200

Last change on this file since 58200 was 58200, checked in by vboxsync, 9 years ago

VBoxGuestR0LibSharedFolders.h: Shouldn't include log.h and assert.h from here. The client code should do that.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
Line 
1/* $Id: VBoxGuestR0LibSharedFolders.h 58200 2015-10-12 15:28:03Z vboxsync $ */
2/** @file
3 * VBoxGuestLib - Central calls header.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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_VBoxGuestR0LibSharedFolders_h
28#define ___VBoxGuestLib_VBoxGuestR0LibSharedFolders_h
29
30#include <VBox/VBoxGuestLib.h>
31#include <VBox/shflsvc.h>
32
33typedef struct VBGLSFCLIENT
34{
35 HGCMCLIENTID idClient;
36 VBGLHGCMHANDLE handle;
37} VBGLSFCLIENT;
38typedef VBGLSFCLIENT *PVBGLSFCLIENT;
39
40typedef struct VBGLSFMAP
41{
42 SHFLROOT root;
43} VBGLSFMAP, *PVBGLSFMAP;
44
45DECLVBGL(int) VbglR0SfInit(void);
46DECLVBGL(void) VbglR0SfTerm(void);
47DECLVBGL(int) VbglR0SfConnect(PVBGLSFCLIENT pClient);
48DECLVBGL(void) VbglR0SfDisconnect(PVBGLSFCLIENT pClient);
49
50DECLVBGL(int) VbglR0SfQueryMappings(PVBGLSFCLIENT pClient, SHFLMAPPING paMappings[], uint32_t *pcMappings);
51
52DECLVBGL(int) VbglR0SfQueryMapName(PVBGLSFCLIENT pClient, SHFLROOT root, SHFLSTRING *pString, uint32_t size);
53
54/**
55 * Create a new file or folder or open an existing one in a shared folder. Proxies
56 * to vbsfCreate in the host shared folder service.
57 *
58 * @returns IPRT status code, but see note below
59 * @param pClient Host-guest communication connection
60 * @param pMap The mapping for the shared folder in which the file
61 * or folder is to be created
62 * @param pParsedPath The path of the file or folder relative to the shared
63 * folder
64 * @param pCreateParms Parameters for file/folder creation. See the
65 * structure description in shflsvc.h
66 * @retval pCreateParms See the structure description in shflsvc.h
67 *
68 * @note This function reports errors as follows. The return value is always
69 * VINF_SUCCESS unless an exceptional condition occurs - out of
70 * memory, invalid arguments, etc. If the file or folder could not be
71 * opened or created, pCreateParms->Handle will be set to
72 * SHFL_HANDLE_NIL on return. In this case the value in
73 * pCreateParms->Result provides information as to why (e.g.
74 * SHFL_FILE_EXISTS). pCreateParms->Result is also set on success
75 * as additional information.
76 */
77DECLVBGL(int) VbglR0SfCreate(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, PSHFLSTRING pParsedPath, PSHFLCREATEPARMS pCreateParms);
78
79DECLVBGL(int) VbglR0SfClose(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE Handle);
80DECLVBGL(int) VbglR0SfRemove(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, PSHFLSTRING pParsedPath, uint32_t flags);
81DECLVBGL(int) VbglR0SfRename(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, PSHFLSTRING pSrcPath, PSHFLSTRING pDestPath, uint32_t flags);
82DECLVBGL(int) VbglR0SfFlush(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile);
83
84DECLVBGL(int) VbglR0SfRead(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint32_t *pcbBuffer, uint8_t *pBuffer, bool fLocked);
85DECLVBGL(int) VbglR0SfReadPageList(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint32_t *pcbBuffer,
86 uint16_t offFirstPage, uint16_t cPages, RTGCPHYS64 *paPages);
87DECLVBGL(int) VbglR0SfWrite(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset,
88 uint32_t *pcbBuffer, uint8_t *pBuffer, bool fLocked);
89DECLVBGL(int) VbglR0SfWritePhysCont(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset,
90 uint32_t *pcbBuffer, RTCCPHYS PhysBuffer);
91DECLVBGL(int) VbglR0SfWritePageList(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint32_t *pcbBuffer,
92 uint16_t offFirstPage, uint16_t cPages, RTGCPHYS64 *paPages);
93
94DECLVBGL(int) VbglR0SfLock(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint64_t cbSize, uint32_t fLock);
95
96DECLVBGL(int) VbglR0SfDirInfo(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile,PSHFLSTRING ParsedPath, uint32_t flags,
97 uint32_t index, uint32_t *pcbBuffer, PSHFLDIRINFO pBuffer, uint32_t *pcFiles);
98DECLVBGL(int) VbglR0SfFsInfo(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, SHFLHANDLE hFile, uint32_t flags, uint32_t *pcbBuffer, PSHFLDIRINFO pBuffer);
99
100DECLVBGL(int) VbglR0SfMapFolder(PVBGLSFCLIENT pClient, PSHFLSTRING szFolderName, PVBGLSFMAP pMap);
101DECLVBGL(int) VbglR0SfUnmapFolder(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap);
102DECLVBGL(int) VbglR0SfSetUtf8(PVBGLSFCLIENT pClient);
103
104DECLVBGL(int) VbglR0SfReadLink(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, PSHFLSTRING ParsedPath, uint32_t pcbBuffer, uint8_t *pBuffer);
105DECLVBGL(int) VbglR0SfSymlink(PVBGLSFCLIENT pClient, PVBGLSFMAP pMap, PSHFLSTRING pNewPath, PSHFLSTRING pOldPath, PSHFLFSOBJINFO pBuffer);
106DECLVBGL(int) VbglR0SfSetSymlinks(PVBGLSFCLIENT pClient);
107
108#endif /* !___VBoxGuestLib_VBoxGuestR0LibSharedFolders_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