VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/mappings.h@ 3944

Last change on this file since 3944 was 3944, checked in by vboxsync, 18 years ago

Preparations for dealing with case sensitivity

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
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
29typedef struct
30{
31 PSHFLSTRING pFolderName;
32 PSHFLSTRING pMapName;
33 uint32_t cMappings;
34 bool fValid;
35 bool fHostCaseSensitive;
36 bool fGuestCaseSensitive;
37} MAPPING, *PMAPPING;
38
39extern MAPPING FolderMapping[SHFL_MAX_MAPPINGS];
40
41bool vbsfMappingQuery(uint32_t iMapping, PMAPPING *pMapping);
42
43int vbsfMappingsAdd (PSHFLSTRING pFolderName, PSHFLSTRING pMapName);
44int vbsfMappingsRemove (PSHFLSTRING pMapName);
45
46int vbsfMappingsQuery (SHFLCLIENTDATA *pClient, SHFLMAPPING *pMappings, uint32_t *pcMappings);
47int vbsfMappingsQueryName (SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pString);
48
49int vbsfMapFolder (SHFLCLIENTDATA *pClient, PSHFLSTRING pszMapName, RTUCS2 delimiter, bool fCaseSensitive, SHFLROOT *pRoot);
50int vbsfUnmapFolder (SHFLCLIENTDATA *pClient, SHFLROOT root);
51
52const RTUCS2 *vbsfMappingsQueryHostRoot (SHFLROOT root, uint32_t *pcbRoot);
53bool vbsfIsGuestMappingCaseSensitive (SHFLROOT root);
54bool vbsfIsHostMappingCaseSensitive (SHFLROOT root);
55
56#endif /* __MAPPINGS__H */
Note: See TracBrowser for help on using the repository browser.

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