1 | /* $Id: VBox-doc.c 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Top Level Documentation File.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
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 |
|
---|
18 |
|
---|
19 | /** @mainpage VirtualBox
|
---|
20 | *
|
---|
21 | * (add introduction here)
|
---|
22 | *
|
---|
23 | * @section pg_main_comp Components
|
---|
24 | *
|
---|
25 | * - VM / @ref pg_vmm "VMM" / GVM / @ref pg_gvmm "GVMM" - Virtual Machine
|
---|
26 | * Monitor.
|
---|
27 | * - @ref pg_cfgm
|
---|
28 | * - @ref pg_cpum
|
---|
29 | * - CSAM - Guest OS Code Scanning and Analyis Manager.
|
---|
30 | * - @ref pg_dbgf
|
---|
31 | * - DBGC - Debugger Console.
|
---|
32 | * - VBoxDbg - Debugger GUI (Qt).
|
---|
33 | * - DIS - Disassembler.
|
---|
34 | * - @ref pg_em
|
---|
35 | * - HWACCM - Intel/AMD VM Hardware Support Manager.
|
---|
36 | * - REM - Recompiled Execution Monitor.
|
---|
37 | * - @ref pg_gmm
|
---|
38 | * - @ref pg_mm
|
---|
39 | * - @ref pg_pgm
|
---|
40 | * - @ref pg_selm
|
---|
41 | * - @ref pg_iom
|
---|
42 | * - PATM - Dynamic Guest OS Patching Manager.
|
---|
43 | * - @ref pg_pdm
|
---|
44 | * - Devices / USB Devices, Drivers and their public interfaces.
|
---|
45 | * - Async I/O Completion API.
|
---|
46 | * - Async Task API.
|
---|
47 | * - Critical Section API.
|
---|
48 | * - Queue API.
|
---|
49 | * - Thread API.
|
---|
50 | * - @ref pg_ssm
|
---|
51 | * - @ref pg_stam
|
---|
52 | * - @ref pg_tm
|
---|
53 | * - @ref pg_trpm
|
---|
54 | * - Pluggable Components (via PDM).
|
---|
55 | * - DevPCArch - PC Architecture Device (chipset, legacy ++).
|
---|
56 | * - DevPCBios - Basic Input Output System.
|
---|
57 | * - DevDMAC - DMA Controller.
|
---|
58 | * - DevPIC - Programmable Interrupt Controller.
|
---|
59 | * - DevPIT - Programmable Interval Timer (i8254).
|
---|
60 | * - DevRTC - Real Time Clock.
|
---|
61 | * - DevVGA - Video Graphic Array.
|
---|
62 | * - DevPCI - Peripheral Component Interface (Bus).
|
---|
63 | * - VBoxDev - Special PCI Device which serves as an interface between
|
---|
64 | * the VMM and the guest OS for the additions.
|
---|
65 | * - Networking:
|
---|
66 | * - DevPCNet - AMD PCNet Device Emulation.
|
---|
67 | * - DevE1000 - Intel E1000 Device Emulation.
|
---|
68 | * - DevEEPROM - Intel E1000 EPROM Device Emulation.
|
---|
69 | * - SrvINetNetR0 - Internal Networking Ring-0 Service.
|
---|
70 | * - DevINIP - IP Stack Service for the internal networking.
|
---|
71 | * - DrvIntNet - Internal Networking Driver.
|
---|
72 | * - DrvNetSniffer - Wireshark Compatible Sniffer Driver (pass thru).
|
---|
73 | * - DrvNAT - Network Address Translation Driver.
|
---|
74 | * - DrvTAP - Host Interface Networking Driver.
|
---|
75 | * - Storage:
|
---|
76 | * - DevATA - ATA ((E)IDE) Device Emulation.
|
---|
77 | * - DevAHCI - Serial ATA / AHCI Device Emulation.
|
---|
78 | * - DevFDC - Floppy Controller Device Emulation.
|
---|
79 | * - DrvBlock - Intermediate block driver.
|
---|
80 | * - DrvHostBase - Common code for the host drivers.
|
---|
81 | * - DrvHostDVD - Host DVD drive driver.
|
---|
82 | * - DrvHostFloppy - Host floppy drive driver.
|
---|
83 | * - DrvHostRawDisk - Host raw disk drive driver.
|
---|
84 | * - DrvMediaISO - ISO media driver.
|
---|
85 | * - DrvRawImage - Raw image driver (floppy images etc).
|
---|
86 | * - DrvVD - Intermediate Virtual Drive (Media) driver.
|
---|
87 | * - DrvVDI - VirtualBox Drive Image Container Driver.
|
---|
88 | * - DrvVmdk - VMDK Drive Image Container Driver.
|
---|
89 | * - Host Drivers.
|
---|
90 | * - SUPDRV - The Support driver (aka VBoxDrv).
|
---|
91 | * - VBoxUSB - The USB support driver.
|
---|
92 | * - VBoxTAP - The Host Interface Networking driver.
|
---|
93 | * - @ref pg_netflt
|
---|
94 | * - Host Services.
|
---|
95 | * - Shared Clipboard.
|
---|
96 | * - 3D
|
---|
97 | * - Main API.
|
---|
98 | *
|
---|
99 | * @todo Make links to the components.
|
---|
100 | */
|
---|
101 |
|
---|