1 | /** @file
|
---|
2 | * Shared Folders: Main header - Common data and function prototypes definitions.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2010 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 ___SHFL_H
|
---|
18 | #define ___SHFL_H
|
---|
19 |
|
---|
20 | #include <VBox/err.h>
|
---|
21 | #include <VBox/hgcmsvc.h>
|
---|
22 |
|
---|
23 | #define LOG_GROUP LOG_GROUP_SHARED_FOLDERS
|
---|
24 | #include <VBox/log.h>
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * Shared Folders client flags.
|
---|
28 | * @{
|
---|
29 | */
|
---|
30 |
|
---|
31 | /** Client has queried mappings at least once and, therefore,
|
---|
32 | * the service can process its other requests too.
|
---|
33 | */
|
---|
34 | #define SHFL_CF_MAPPINGS_QUERIED (0x00000001)
|
---|
35 |
|
---|
36 | /** Mappings have been changed since last query. */
|
---|
37 | #define SHFL_CF_MAPPINGS_CHANGED (0x00000002)
|
---|
38 |
|
---|
39 | /** Client uses UTF8 encoding, if not set then unicode 16 bit (UCS2) is used. */
|
---|
40 | #define SHFL_CF_UTF8 (0x00000004)
|
---|
41 |
|
---|
42 | /** Client both supports and wants to use symlinks. */
|
---|
43 | #define SHFL_CF_SYMLINKS (0x00000008)
|
---|
44 |
|
---|
45 | /** @} */
|
---|
46 |
|
---|
47 | typedef struct _SHFLCLIENTDATA
|
---|
48 | {
|
---|
49 | /** Client flags */
|
---|
50 | uint32_t fu32Flags;
|
---|
51 | /** Path delimiter. */
|
---|
52 | RTUTF16 PathDelimiter;
|
---|
53 | } SHFLCLIENTDATA;
|
---|
54 | /** Pointer to a SHFLCLIENTDATA structure. */
|
---|
55 | typedef SHFLCLIENTDATA *PSHFLCLIENTDATA;
|
---|
56 |
|
---|
57 | #endif /* !___SHFL_H */
|
---|
58 |
|
---|