VirtualBox

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

Last change on this file since 30037 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/** @file
2 * Shared Folders: Main header - Common data and function prototypes definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2007 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/** @} */
43
44typedef struct _SHFLCLIENTDATA
45{
46 /** Client flags */
47 uint32_t fu32Flags;
48
49 RTUTF16 PathDelimiter;
50} SHFLCLIENTDATA;
51
52
53#endif /* !___SHFL_H */
54
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use