1 | /** @file
|
---|
2 | * Shared folders: Mappings header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2012 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___MAPPINGS_H
|
---|
18 | #define ___MAPPINGS_H
|
---|
19 |
|
---|
20 | #include "shfl.h"
|
---|
21 | #include <VBox/shflsvc.h>
|
---|
22 |
|
---|
23 | typedef struct
|
---|
24 | {
|
---|
25 | char *pszFolderName; /**< directory at the host to share with the guest */
|
---|
26 | PSHFLSTRING pMapName; /**< share name for the guest */
|
---|
27 | uint32_t cMappings; /**< number of mappings */
|
---|
28 | bool fValid; /**< mapping entry is used/valid */
|
---|
29 | bool fHostCaseSensitive; /**< host file name space is case-sensitive */
|
---|
30 | bool fGuestCaseSensitive; /**< guest file name space is case-sensitive */
|
---|
31 | bool fWritable; /**< folder is writable for the guest */
|
---|
32 | bool fAutoMount; /**< folder will be auto-mounted by the guest */
|
---|
33 | bool fSymlinksCreate; /**< guest is able to create symlinks */
|
---|
34 | bool fMissing; /**< mapping not invalid but host path does not exist.
|
---|
35 | Any guest operation on such a folder fails! */
|
---|
36 | } MAPPING;
|
---|
37 | /** Pointer to a MAPPING structure. */
|
---|
38 | typedef MAPPING *PMAPPING;
|
---|
39 |
|
---|
40 | void vbsfMappingInit(void);
|
---|
41 |
|
---|
42 | bool vbsfMappingQuery(uint32_t iMapping, PMAPPING *pMapping);
|
---|
43 |
|
---|
44 | int vbsfMappingsAdd(PSHFLSTRING pFolderName, PSHFLSTRING pMapName,
|
---|
45 | bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing);
|
---|
46 | int vbsfMappingsRemove(PSHFLSTRING pMapName);
|
---|
47 |
|
---|
48 | int vbsfMappingsQuery(PSHFLCLIENTDATA pClient, PSHFLMAPPING pMappings, uint32_t *pcMappings);
|
---|
49 | int vbsfMappingsQueryName(PSHFLCLIENTDATA pClient, SHFLROOT root, SHFLSTRING *pString);
|
---|
50 | int vbsfMappingsQueryWritable(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fWritable);
|
---|
51 | int vbsfMappingsQueryAutoMount(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fAutoMount);
|
---|
52 | int vbsfMappingsQuerySymlinksCreate(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fSymlinksCreate);
|
---|
53 |
|
---|
54 | int vbsfMapFolder(PSHFLCLIENTDATA pClient, PSHFLSTRING pszMapName, RTUTF16 delimiter,
|
---|
55 | bool fCaseSensitive, SHFLROOT *pRoot);
|
---|
56 | int vbsfUnmapFolder(PSHFLCLIENTDATA pClient, SHFLROOT root);
|
---|
57 |
|
---|
58 | const char* vbsfMappingsQueryHostRoot(SHFLROOT root);
|
---|
59 | bool vbsfIsGuestMappingCaseSensitive(SHFLROOT root);
|
---|
60 | bool vbsfIsHostMappingCaseSensitive(SHFLROOT root);
|
---|
61 |
|
---|
62 | int vbsfMappingLoaded(const PMAPPING pLoadedMapping, SHFLROOT root);
|
---|
63 | PMAPPING vbsfMappingGetByRoot(SHFLROOT root);
|
---|
64 |
|
---|
65 | #endif /* !___MAPPINGS_H */
|
---|
66 |
|
---|