VirtualBox

source: vbox/trunk/src/VBox/Runtime/generic/fs-stubs-generic.cpp@ 5938

Last change on this file since 5938 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1/* $Id: fs-stubs-generic.cpp 4071 2007-08-07 17:07:59Z 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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP RTLOGGROUP_FS
23
24#include <iprt/fs.h>
25#include <iprt/err.h>
26#include <iprt/log.h>
27#include <iprt/assert.h>
28#include "internal/fs.h"
29
30
31
32RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree,
33 uint32_t *pcbBlock, uint32_t *pcbSector)
34{
35 if (pcbTotal)
36 *pcbTotal = _2G;
37 if (pcbFree)
38 *pcbFree = _1G;
39 if (pcbBlock)
40 *pcbBlock = _4K;
41 if (pcbSector)
42 *pcbSector = 512;
43 LogFlow(("RTFsQuerySizes: success stub!\n"));
44 return VINF_SUCCESS;
45}
46
47
48RTR3DECL(int) RTFsQuerySerial(const char *pszFsPath, uint32_t *pu32Serial)
49{
50 if (pu32Serial)
51 *pu32Serial = 0xc0ffee;
52 LogFlow(("RTFsQuerySerial: success stub!\n"));
53 return VINF_SUCCESS;
54}
55
56
57RTR3DECL(int) RTFsQueryProperties(const char *pszFsPath, PRTFSPROPERTIES pProperties)
58{
59 pProperties->cbMaxComponent = 255;
60 pProperties->fCaseSensitive = true;
61 pProperties->fCompressed = false;
62 pProperties->fFileCompression = false;
63 pProperties->fReadOnly = false;
64 pProperties->fRemote = false;
65 pProperties->fSupportsUnicode = true;
66 LogFlow(("RTFsQueryProperties: success stub!\n"));
67 return VINF_SUCCESS;
68}
69
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette