VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/tstVBoxAPIWin.cpp@ 1711

Last change on this file since 1711 was 1, checked in by vboxsync, 55 years ago

import

File size: 3.4 KB
Line 
1/** @file
2 *
3 * tstVBoxAPIWin - sample program to illustrate the VirtualBox
4 * COM API for machine management on Windows.
5 It only uses standard C/C++ and COM semantics,
6 * no additional VBox classes/macros/helpers. To
7 * make things even easier to follow, only the
8 * standard Win32 API has been used. Typically,
9 * C++ developers would make use of Microsoft's
10 * ATL to ease development.
11 */
12
13/*
14 * Copyright (C) 2006 InnoTek Systemberatung GmbH
15 *
16 * This file is part of VirtualBox Open Source Edition (OSE), as
17 * available from http://www.virtualbox.org. This file is free software;
18 * you can redistribute it and/or modify it under the terms of the GNU
19 * General Public License as published by the Free Software Foundation,
20 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
21 * distribution. VirtualBox OSE is distributed in the hope that it will
22 * be useful, but WITHOUT ANY WARRANTY of any kind.
23 *
24 * If you received this file as part of a commercial VirtualBox
25 * distribution, then only the terms of your commercial VirtualBox
26 * license agreement apply instead of the previous paragraph.
27 */
28
29#include <stdio.h>
30#include "VirtualBox.h"
31
32
33int listVMs(IVirtualBox *virtualBox)
34{
35 HRESULT rc;
36
37 /*
38 * First we have to get a list of all registered VMs
39 */
40 IMachineCollection *collection = NULL;
41 IMachineEnumerator *enumerator = NULL;
42
43 do
44 {
45 rc = virtualBox->get_Machines(&collection);
46 if (SUCCEEDED(rc))
47 rc = collection->Enumerate(&enumerator);
48
49 if (SUCCEEDED(rc))
50 {
51 BOOL hasMore;
52 while (enumerator->HasMore(&hasMore), hasMore)
53 {
54 /*
55 * Get the machine object
56 */
57 IMachine *machine = NULL;
58 rc = enumerator->GetNext(&machine);
59 if (SUCCEEDED(rc))
60 {
61 BSTR str;
62
63 machine->get_Name(&str);
64 printf("Name: %S\n", str);
65
66 SysFreeString(str);
67
68 machine->Release();
69 }
70 }
71 }
72 } while (0);
73
74 if (enumerator)
75 enumerator->Release();
76 if (collection)
77 collection->Release();
78
79 return 0;
80}
81
82
83int main(int argc, char *argv[])
84{
85 HRESULT rc;
86 IVirtualBox *virtualBox;
87
88 do
89 {
90 /* initialize the COM subsystem */
91 CoInitialize(NULL);
92
93 /* instantiate the VirtualBox root object */
94 rc = CoCreateInstance(CLSID_VirtualBox, /* the VirtualBox base object */
95 NULL, /* no aggregation */
96 CLSCTX_LOCAL_SERVER, /* the object lives in a server process on this machine */
97 IID_IVirtualBox, /* IID of the interface */
98 (void**)&virtualBox);
99
100 if (!SUCCEEDED(rc))
101 {
102 printf("Error creating VirtualBox instance! rc = 0x%x\n", rc);
103 break;
104 }
105
106 listVMs(virtualBox);
107
108
109 /* release the VirtualBox object */
110 virtualBox->Release();
111
112 } while (0);
113
114 CoUninitialize();
115 return 0;
116}
117
118
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