VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/shflhandle.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: 2.0 KB
Line 
1/** @file
2 *
3 * Shared Folders:
4 * Handles helper functions header.
5 */
6
7/*
8 * Copyright (C) 2006-2007 Oracle Corporation
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 (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef __SHFLHANDLE__H
20#define __SHFLHANDLE__H
21
22#include "shfl.h"
23#include <VBox/shflsvc.h>
24#include <iprt/dir.h>
25
26#define SHFL_HF_TYPE_MASK (0x000000FF)
27#define SHFL_HF_TYPE_DIR (0x00000001)
28#define SHFL_HF_TYPE_FILE (0x00000002)
29#define SHFL_HF_TYPE_VOLUME (0x00000004)
30#define SHFL_HF_TYPE_DONTUSE (0x00000080)
31
32#define SHFL_HF_VALID (0x80000000)
33
34#define SHFLHANDLE_MAX (4096)
35
36typedef struct _SHFLHANDLEHDR
37{
38 uint32_t u32Flags;
39} SHFLHANDLEHDR;
40
41#define ShflHandleType(__Handle) BIT_FLAG(((SHFLHANDLEHDR *)(__Handle))->u32Flags, SHFL_HF_TYPE_MASK)
42
43typedef struct _SHFLFILEHANDLE
44{
45 SHFLHANDLEHDR Header;
46 union
47 {
48 struct
49 {
50 RTFILE Handle;
51 } file;
52 struct
53 {
54 PRTDIR Handle;
55 PRTDIR SearchHandle;
56 PRTDIRENTRYEX pLastValidEntry; /* last found file in a directory search */
57 } dir;
58 };
59} SHFLFILEHANDLE;
60
61
62SHFLHANDLE vbsfAllocDirHandle (void);
63SHFLHANDLE vbsfAllocFileHandle (void);
64void vbsfFreeFileHandle (SHFLHANDLE hHandle);
65
66
67int vbsfInitHandleTable();
68int vbsfFreeHandleTable();
69SHFLHANDLE vbsfAllocHandle(uint32_t uType, uintptr_t pvUserData);
70uintptr_t vbsfQueryHandle(SHFLHANDLE handle, uint32_t uType);
71int vbsfFreeHandle(SHFLHANDLE handle);
72
73#endif /* __SHFLHANDLE__H */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use