1 | /** @file
|
---|
2 | *
|
---|
3 | * Shared Folders:
|
---|
4 | * Handles helper functions header.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 |
|
---|
36 | typedef struct _SHFLHANDLEHDR
|
---|
37 | {
|
---|
38 | uint32_t u32Flags;
|
---|
39 | } SHFLHANDLEHDR;
|
---|
40 |
|
---|
41 | #define ShflHandleType(__Handle) BIT_FLAG(((SHFLHANDLEHDR *)(__Handle))->u32Flags, SHFL_HF_TYPE_MASK)
|
---|
42 |
|
---|
43 | typedef 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 |
|
---|
62 | SHFLHANDLE vbsfAllocDirHandle (void);
|
---|
63 | SHFLHANDLE vbsfAllocFileHandle (void);
|
---|
64 | void vbsfFreeFileHandle (SHFLHANDLE hHandle);
|
---|
65 |
|
---|
66 |
|
---|
67 | int vbsfInitHandleTable();
|
---|
68 | int vbsfFreeHandleTable();
|
---|
69 | SHFLHANDLE vbsfAllocHandle(uint32_t uType, uintptr_t pvUserData);
|
---|
70 | uintptr_t vbsfQueryHandle(SHFLHANDLE handle, uint32_t uType);
|
---|
71 | int vbsfFreeHandle(SHFLHANDLE handle);
|
---|
72 |
|
---|
73 | #endif /* __SHFLHANDLE__H */
|
---|