VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/vbsfpath.h@ 63939

Last change on this file since 63939 was 62489, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/** @file
2 * VBox Shared Folders header.
3 * Guest/host path convertion and verification.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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
18#ifndef __VBSFPATH__H
19#define __VBSFPATH__H
20
21#include "shfl.h"
22#include <VBox/shflsvc.h>
23
24#define VBSF_O_PATH_WILDCARD UINT32_C(0x00000001)
25#define VBSF_O_PATH_PRESERVE_LAST_COMPONENT UINT32_C(0x00000002)
26#define VBSF_O_PATH_CHECK_ROOT_ESCAPE UINT32_C(0x00000004)
27
28#define VBSF_F_PATH_HAS_WILDCARD_IN_PREFIX UINT32_C(0x00000001) /* A component before the last one contains a wildcard. */
29#define VBSF_F_PATH_HAS_WILDCARD_IN_LAST UINT32_C(0x00000002) /* The last component contains a wildcard. */
30
31/**
32 *
33 * @param pClient Shared folder client.
34 * @param hRoot Root handle.
35 * @param pGuestString Guest want to access the path.
36 * @param cbGuestString Size of pGuestString memory buffer.
37 * @param ppszHostPath Returned full host path: root prefix + guest path.
38 * @param pcbHostPathRoot Length of the root prefix in bytes. Optional, can be NULL.
39 * @param fWildCard Whether the last component may contain
40 * wildcards and thus might require exclusion
41 * from the case correction.
42 * @param fPreserveLastComponent Always exclude the last component from case
43 * correction if set.
44 * @param pfu32PathFlags VBSF_F_PATH_* flags. Optional, can be NULL.
45 */
46int vbsfPathGuestToHost(SHFLCLIENTDATA *pClient, SHFLROOT hRoot,
47 PSHFLSTRING pGuestString, uint32_t cbGuestString,
48 char **ppszHostPath, uint32_t *pcbHostPathRoot,
49 uint32_t fu32Options,
50 uint32_t *pfu32PathFlags);
51
52/** Free the host path returned by vbsfPathGuestToHost.
53 *
54 * @param pszHostPath Host path string.
55 */
56void vbsfFreeHostPath(char *pszHostPath);
57
58#endif /* __VBSFPATH__H */
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