VirtualBox

source: vbox/trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h@ 25414

Last change on this file since 25414 was 23223, checked in by vboxsync, 15 years ago

API: big medium handling change and lots of assorted other cleanups and fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/** @file
2 *
3 * VirtualBoxErrorInfo COM classe definition
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ____H_VIRTUALBOXERRORINFOIMPL
23#define ____H_VIRTUALBOXERRORINFOIMPL
24
25#include "VirtualBoxBase.h"
26
27using namespace com;
28
29class ATL_NO_VTABLE VirtualBoxErrorInfo
30 : public CComObjectRootEx <CComMultiThreadModel>
31 , public IVirtualBoxErrorInfo
32{
33public:
34
35 DECLARE_NOT_AGGREGATABLE(VirtualBoxErrorInfo)
36
37 DECLARE_PROTECT_FINAL_CONSTRUCT()
38
39 BEGIN_COM_MAP(VirtualBoxErrorInfo)
40 COM_INTERFACE_ENTRY(IErrorInfo)
41 COM_INTERFACE_ENTRY(IVirtualBoxErrorInfo)
42 END_COM_MAP()
43
44#if defined (RT_OS_WINDOWS)
45
46 HRESULT init (IErrorInfo *aInfo);
47
48 STDMETHOD(GetGUID) (GUID *guid);
49 STDMETHOD(GetSource) (BSTR *source);
50 STDMETHOD(GetDescription) (BSTR *description);
51 STDMETHOD(GetHelpFile) (BSTR *pBstrHelpFile);
52 STDMETHOD(GetHelpContext) (DWORD *pdwHelpContext);
53
54#else // !defined (RT_OS_WINDOWS)
55
56 HRESULT init (nsIException *aInfo);
57
58 NS_DECL_NSIEXCEPTION
59
60#endif
61
62 VirtualBoxErrorInfo() : mResultCode (S_OK) {}
63
64 // public initializer/uninitializer for internal purposes only
65 HRESULT init (HRESULT aResultCode, const GUID &aIID,
66 CBSTR aComponent, CBSTR aText,
67 IVirtualBoxErrorInfo *aNext = NULL);
68
69 // IVirtualBoxErrorInfo properties
70 STDMETHOD(COMGETTER(ResultCode)) (LONG *aResultCode);
71 STDMETHOD(COMGETTER(InterfaceID)) (BSTR *aIID);
72 STDMETHOD(COMGETTER(Component)) (BSTR *aComponent);
73 STDMETHOD(COMGETTER(Text)) (BSTR *aText);
74 STDMETHOD(COMGETTER(Next)) (IVirtualBoxErrorInfo **aNext);
75
76private:
77 // FIXME: declare these here until VBoxSupportsTranslation base
78 // is available in this class.
79 static const char *tr (const char *a) { return a; }
80 static HRESULT setError (HRESULT rc,
81 const char * /* a */,
82 const char * /* b */,
83 void * /* c */) { return rc; }
84
85 HRESULT mResultCode;
86 Bstr mText;
87 Guid mIID;
88 Bstr mComponent;
89 ComPtr<IVirtualBoxErrorInfo> mNext;
90};
91
92#endif // ____H_VIRTUALBOXERRORINFOIMPL
93
94/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use