1 | ;
|
---|
2 | ; VBoxGuest Device Driver Messages
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
5 | ;
|
---|
6 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
8 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | ; General Public License (GPL) as published by the Free Software
|
---|
10 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | ;
|
---|
14 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
15 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
16 | ; additional information or have any questions.
|
---|
17 | ;
|
---|
18 |
|
---|
19 |
|
---|
20 | ;//
|
---|
21 | ;// Status values are 32 bit values layed out as follows:
|
---|
22 | ;//
|
---|
23 | ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
|
---|
24 | ;// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
---|
25 | ;// +---+-+-------------------------+-------------------------------+
|
---|
26 | ;// |Sev|C| Facility | Code |
|
---|
27 | ;// +---+-+-------------------------+-------------------------------+
|
---|
28 | ;//
|
---|
29 | ;// where
|
---|
30 | ;//
|
---|
31 | ;// Sev - is the severity code
|
---|
32 | ;//
|
---|
33 | ;// 00 - Success
|
---|
34 | ;// 01 - Informational
|
---|
35 | ;// 10 - Warning
|
---|
36 | ;// 11 - Error
|
---|
37 | ;//
|
---|
38 | ;// C - is the Customer code flag
|
---|
39 | ;//
|
---|
40 | ;// Facility - is the facility code
|
---|
41 | ;//
|
---|
42 | ;// Code - is the facility's status code
|
---|
43 | ;//
|
---|
44 | ;
|
---|
45 | MessageIdTypedef=NTSTATUS
|
---|
46 |
|
---|
47 | SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
|
---|
48 | Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
|
---|
49 | Warning=0x2:STATUS_SEVERITY_WARNING
|
---|
50 | Error=0x3:STATUS_SEVERITY_ERROR
|
---|
51 | )
|
---|
52 |
|
---|
53 | FacilityNames=(System=0x0
|
---|
54 | RpcRuntime=0x2:FACILITY_RPC_RUNTIME
|
---|
55 | RpcStubs=0x3:FACILITY_RPC_STUBS
|
---|
56 | Io=0x4:FACILITY_IO_ERROR_CODE
|
---|
57 | VBoxGuestClass=0xee:FACILITY_VBOXGUESTCLASS_ERROR_CODE
|
---|
58 | )
|
---|
59 |
|
---|
60 |
|
---|
61 | MessageId=0x0001 Facility=VBoxGuestClass Severity=Informational SymbolicName=VBOXGUESTCLASS_FOO
|
---|
62 | Language=English
|
---|
63 | VBoxGuest has something to say %1.
|
---|
64 | .
|
---|