VirtualBox

source: vbox/trunk/include/VBox/VBoxGuestLibSharedFolders.h@ 58203

最後變更 在這個檔案從58203是 58203,由 vboxsync 提交於 9 年 前

VBoxGuestR0LibSharedFolders.h: Moved from VBoxGuestLib to include/VBox/VBoxGuestLibSharedFolders.h where it belongs (not merging it into VBoxGuestLib.h because it includes VBox/shflsvc.h.

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

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