VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/shfl.h@ 77807

Last change on this file since 77807 was 76570, checked in by vboxsync, 6 years ago

HostServices: Use VBOX_INCLUDED_SRC_ as header guard prefix with scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/** @file
2 * Shared Folders: Main header - Common data and function prototypes definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2019 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 VBOX_INCLUDED_SRC_SharedFolders_shfl_h
18#define VBOX_INCLUDED_SRC_SharedFolders_shfl_h
19#ifndef RT_WITHOUT_PRAGMA_ONCE
20# pragma once
21#endif
22
23#include <VBox/err.h>
24#include <VBox/hgcmsvc.h>
25#include <VBox/shflsvc.h>
26
27#include <VBox/log.h>
28
29/**
30 * Shared Folders client flags.
31 * @{
32 */
33
34/** Client has queried mappings at least once and, therefore,
35 * the service can process its other requests too.
36 */
37#define SHFL_CF_MAPPINGS_QUERIED (0x00000001)
38
39/** Mappings have been changed since last query. */
40#define SHFL_CF_MAPPINGS_CHANGED (0x00000002)
41
42/** Client uses UTF8 encoding, if not set then unicode 16 bit (UCS2) is used. */
43#define SHFL_CF_UTF8 (0x00000004)
44
45/** Client both supports and wants to use symlinks. */
46#define SHFL_CF_SYMLINKS (0x00000008)
47
48/** The call to SHFL_FN_WAIT_FOR_MAPPINGS_CHANGES will return immediately
49 * because of a SHFL_FN_CANCEL_MAPPINGS_CHANGES_WAITS call. */
50#define SHFL_CF_CANCEL_NEXT_WAIT (0x00000010)
51
52/** @} */
53
54typedef struct _SHFLCLIENTDATA
55{
56 /** Client flags */
57 uint32_t fu32Flags;
58 /** Path delimiter. */
59 RTUTF16 PathDelimiter;
60 /** Currently unused. */
61 uint8_t bPadding;
62 /** Set if the client has mapping usage counts.
63 * This is for helping with saved state. */
64 uint8_t fHasMappingCounts;
65 /** Mapping counts for each root ID so we can unmap the folders when the
66 * session disconnects or the VM resets. */
67 uint16_t acMappings[SHFL_MAX_MAPPINGS];
68} SHFLCLIENTDATA;
69/** Pointer to a SHFLCLIENTDATA structure. */
70typedef SHFLCLIENTDATA *PSHFLCLIENTDATA;
71
72#endif /* !VBOX_INCLUDED_SRC_SharedFolders_shfl_h */
73
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