VirtualBox

source: vbox/trunk/src/VBox/Main/include/VirtualBoxXMLUtil.h@ 4841

Last change on this file since 4841 was 4841, checked in by vboxsync, 18 years ago

Solaris.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/** @file
2 *
3 * VirtualBox XML utility class declaration
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#ifndef ____H_VIRTUALBOXXMLUTIL
19#define ____H_VIRTUALBOXXMLUTIL
20
21// for BSTR referred from VBox/cfgldr.h
22#include "VBox/com/defs.h"
23
24#include <VBox/cdefs.h>
25#include <VBox/cfgldr.h>
26#include <iprt/file.h>
27
28/** VirtualBox XML settings namespace */
29#define VBOX_XML_NAMESPACE "http://www.innotek.de/VirtualBox-settings"
30
31#define VBOX_XML_VERSION "1.2"
32
33/** VirtualBox XML settings version string */
34#if defined (RT_OS_WINDOWS)
35# define VBOX_XML_PLATFORM "windows"
36#elif defined (RT_OS_LINUX)
37# define VBOX_XML_PLATFORM "linux"
38#elif defined (RT_OS_DARWIN)
39# define VBOX_XML_PLATFORM "macosx"
40#elif defined (RT_OS_OS2)
41# define VBOX_XML_PLATFORM "os2"
42#elif defined (RT_OS_SOLARIS)
43# define VBOX_XML_PLATFORM "solaris"
44#else
45# error Unsupported platform!
46#endif
47
48/** VirtualBox XML common settings version string */
49#define VBOX_XML_PLATFORM_COMMON "common"
50
51/** VirtualBox XML settings schema file */
52#define VBOX_XML_SCHEMA "VirtualBox-settings-" VBOX_XML_PLATFORM ".xsd"
53#define VBOX_XML_SCHEMA_COMMON "VirtualBox-settings-" VBOX_XML_PLATFORM_COMMON ".xsd"
54
55class VirtualBoxXMLUtil
56{
57protected:
58
59 static DECLCALLBACK(int) cfgLdrEntityResolver (const char *pcszPublicId,
60 const char *pcszSystemId,
61 const char *pcszBaseURI,
62 PCFGLDRENTITY pEntity);
63
64 /** VirtualBox XML settings "namespace schema" pair */
65 static const char *XmlSchemaNS;
66};
67
68
69#endif // ____H_VIRTUALBOXXMLUTIL
70
Note: See TracBrowser for help on using the repository browser.

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