1 | /** @file
|
---|
2 | *
|
---|
3 | * Shared folders:
|
---|
4 | * Mappings header.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License as published by the Free Software Foundation,
|
---|
14 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
15 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
16 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * If you received this file as part of a commercial VirtualBox
|
---|
19 | * distribution, then only the terms of your commercial VirtualBox
|
---|
20 | * license agreement apply instead of the previous paragraph.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __MAPPINGS__H
|
---|
24 | #define __MAPPINGS__H
|
---|
25 |
|
---|
26 | #include "shfl.h"
|
---|
27 | #include <VBox/shflsvc.h>
|
---|
28 |
|
---|
29 | typedef struct
|
---|
30 | {
|
---|
31 | PSHFLSTRING pFolderName;
|
---|
32 | PSHFLSTRING pMapName;
|
---|
33 | uint32_t cMappings;
|
---|
34 | bool fValid;
|
---|
35 | } MAPPING, *PMAPPING;
|
---|
36 |
|
---|
37 | extern MAPPING FolderMapping[SHFL_MAX_MAPPINGS];
|
---|
38 |
|
---|
39 | bool vbsfMappingQuery(uint32_t iMapping, PMAPPING *pMapping);
|
---|
40 |
|
---|
41 | int vbsfMappingsAdd (PSHFLSTRING pFolderName, PSHFLSTRING pMapName);
|
---|
42 | int vbsfMappingsRemove (PSHFLSTRING pMapName);
|
---|
43 |
|
---|
44 | int vbsfMappingsQuery (SHFLCLIENTDATA *pClient, SHFLMAPPING *pMappings, uint32_t *pcMappings);
|
---|
45 | int vbsfMappingsQueryName (SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pString);
|
---|
46 |
|
---|
47 | int vbsfMapFolder (SHFLCLIENTDATA *pClient, PSHFLSTRING pszMapName, RTUCS2 delimiter, SHFLROOT *pRoot);
|
---|
48 | int vbsfUnmapFolder (SHFLCLIENTDATA *pClient, SHFLROOT root);
|
---|
49 |
|
---|
50 | const RTUCS2 *vbsfMappingsQueryHostRoot (SHFLROOT root, uint32_t *pcbRoot);
|
---|
51 |
|
---|
52 |
|
---|
53 | #endif /* __MAPPINGS__H */
|
---|