[101035] | 1 | /* $Id: HostX86Impl.h 101041 2023-09-07 09:52:38Z vboxsync $ */
|
---|
| 2 | /** @file
|
---|
| 3 | * VirtualBox COM class implementation - x86 host specific IHost methods / attributes.
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /*
|
---|
| 7 | * Copyright (C) 2023 Oracle and/or its affiliates.
|
---|
| 8 | *
|
---|
| 9 | * This file is part of VirtualBox base platform packages, as
|
---|
| 10 | * available from https://www.virtualbox.org.
|
---|
| 11 | *
|
---|
| 12 | * This program is free software; you can redistribute it and/or
|
---|
| 13 | * modify it under the terms of the GNU General Public License
|
---|
| 14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
| 15 | * License.
|
---|
| 16 | *
|
---|
| 17 | * This program is distributed in the hope that it will be useful, but
|
---|
| 18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
| 20 | * General Public License for more details.
|
---|
| 21 | *
|
---|
| 22 | * You should have received a copy of the GNU General Public License
|
---|
| 23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
| 24 | *
|
---|
| 25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
| 26 | */
|
---|
| 27 |
|
---|
[101041] | 28 | #ifndef MAIN_INCLUDED_HostX86Impl_h
|
---|
| 29 | #define MAIN_INCLUDED_HostX86Impl_h
|
---|
[101035] | 30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
| 31 | # pragma once
|
---|
| 32 | #endif
|
---|
| 33 |
|
---|
| 34 | #include "HostX86Wrap.h"
|
---|
| 35 |
|
---|
| 36 | class ATL_NO_VTABLE HostX86 :
|
---|
| 37 | public HostX86Wrap
|
---|
| 38 | {
|
---|
| 39 | public:
|
---|
| 40 |
|
---|
| 41 | DECLARE_COMMON_CLASS_METHODS(HostX86)
|
---|
| 42 |
|
---|
| 43 | HRESULT FinalConstruct();
|
---|
| 44 | void FinalRelease();
|
---|
| 45 |
|
---|
| 46 | // public initializer/uninitializer for internal purposes only
|
---|
| 47 | HRESULT init(void);
|
---|
| 48 | void uninit();
|
---|
| 49 |
|
---|
| 50 | // public internal methods
|
---|
| 51 | //HRESULT i_loadSettings(const settings::HostX86 &data);
|
---|
| 52 | //HRESULT i_saveSettings(settings::HostX86 &data);
|
---|
| 53 | //void i_rollback();
|
---|
| 54 | //void i_commit();
|
---|
| 55 | //void i_copyFrom(HostX86 *aThat);
|
---|
| 56 |
|
---|
| 57 | private:
|
---|
| 58 |
|
---|
| 59 | // wrapped IHostX86 properties
|
---|
| 60 | HRESULT getNumGroups(ULONG *aNumGroups);
|
---|
| 61 |
|
---|
| 62 | // wrapped IHostX86 methods
|
---|
| 63 | HRESULT getProcessorCPUIDLeaf(ULONG aCpuId,
|
---|
| 64 | ULONG aLeaf,
|
---|
| 65 | ULONG aSubLeaf,
|
---|
| 66 | ULONG *aValEax,
|
---|
| 67 | ULONG *aValEbx,
|
---|
| 68 | ULONG *aValEcx,
|
---|
| 69 | ULONG *aValEdx);
|
---|
| 70 |
|
---|
| 71 | // Data
|
---|
| 72 |
|
---|
| 73 | struct Data
|
---|
| 74 | {
|
---|
| 75 | Data(Machine *pMachine)
|
---|
| 76 | : pParent(pMachine)
|
---|
| 77 | { }
|
---|
| 78 |
|
---|
| 79 | ~Data()
|
---|
| 80 | {};
|
---|
| 81 |
|
---|
| 82 | Machine * const pParent;
|
---|
| 83 |
|
---|
| 84 | // peer
|
---|
| 85 | const ComObjPtr<HostX86> pPeer;
|
---|
| 86 | };
|
---|
| 87 |
|
---|
| 88 | Data *m;
|
---|
| 89 | };
|
---|
| 90 |
|
---|
[101041] | 91 | #endif /* !MAIN_INCLUDED_HostX86Impl_h */
|
---|
[101035] | 92 |
|
---|