1 | /* $Id: fs-stubs-generic.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - File System, Generic Stubs.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #define LOG_GROUP RTLOGGROUP_FS
|
---|
32 |
|
---|
33 | #include <iprt/fs.h>
|
---|
34 | #include <iprt/err.h>
|
---|
35 | #include <iprt/log.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include "internal/fs.h"
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree,
|
---|
42 | uint32_t *pcbBlock, uint32_t *pcbSector)
|
---|
43 | {
|
---|
44 | if (pcbTotal)
|
---|
45 | *pcbTotal = _2G;
|
---|
46 | if (pcbFree)
|
---|
47 | *pcbFree = _1G;
|
---|
48 | if (pcbBlock)
|
---|
49 | *pcbBlock = _4K;
|
---|
50 | if (pcbSector)
|
---|
51 | *pcbSector = 512;
|
---|
52 | LogFlow(("RTFsQuerySizes: success stub!\n"));
|
---|
53 | return VINF_SUCCESS;
|
---|
54 | }
|
---|
55 |
|
---|
56 |
|
---|
57 | RTR3DECL(int) RTFsQuerySerial(const char *pszFsPath, uint32_t *pu32Serial)
|
---|
58 | {
|
---|
59 | if (pu32Serial)
|
---|
60 | *pu32Serial = 0xc0ffee;
|
---|
61 | LogFlow(("RTFsQuerySerial: success stub!\n"));
|
---|
62 | return VINF_SUCCESS;
|
---|
63 | }
|
---|
64 |
|
---|
65 |
|
---|
66 | RTR3DECL(int) RTFsQueryProperties(const char *pszFsPath, PRTFSPROPERTIES pProperties)
|
---|
67 | {
|
---|
68 | pProperties->cbMaxComponent = 255;
|
---|
69 | pProperties->fCaseSensitive = true;
|
---|
70 | pProperties->fCompressed = false;
|
---|
71 | pProperties->fFileCompression = false;
|
---|
72 | pProperties->fReadOnly = false;
|
---|
73 | pProperties->fRemote = false;
|
---|
74 | pProperties->fSupportsUnicode = true;
|
---|
75 | LogFlow(("RTFsQueryProperties: success stub!\n"));
|
---|
76 | return VINF_SUCCESS;
|
---|
77 | }
|
---|
78 |
|
---|