]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Include/ShellBase.h
add comments to function declarations and definitions and updated to match coding...
[mirror_edk2.git] / ShellPkg / Include / ShellBase.h
CommitLineData
e7d41e18 1/** @file\r
2 Root include file for Shell Package modules that utilize the SHELL_RETURN type\r
3\r
0dc527e7 4 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>\r
1e6e84c7 5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
e7d41e18 9\r
1e6e84c7 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
e7d41e18 12\r
13**/\r
14\r
a1d4bfcc 15#ifndef _SHELL_BASE_\r
16#define _SHELL_BASE_\r
125c2cf4 17\r
ae724571 18#define ABS(a) ((a<0)?(-(a)):(a))\r
0dc527e7 19\r
a405b86d 20typedef VOID *SHELL_FILE_HANDLE;\r
21\r
a405b86d 22#define SHELL_FREE_NON_NULL(Pointer) \\r
23 do { \\r
a301fe0c 24 if ((Pointer) != NULL) { \\r
25 FreePool((Pointer)); \\r
26 (Pointer) = NULL; \\r
a405b86d 27 } \\r
28 } while(FALSE)\r
a405b86d 29\r
e7d41e18 30typedef enum {\r
31///\r
32/// The operation completed successfully.\r
33///\r
34SHELL_SUCCESS = 0,\r
35\r
36///\r
37/// The image failed to load.\r
38///\r
39SHELL_LOAD_ERROR = 1,\r
40\r
41///\r
42/// The parameter was incorrect.\r
43///\r
44SHELL_INVALID_PARAMETER = 2,\r
45\r
46///\r
47/// The operation is not supported.\r
48///\r
49SHELL_UNSUPPORTED = 3,\r
50\r
51///\r
52/// The buffer was not the proper size for the request.\r
53///\r
54SHELL_BAD_BUFFER_SIZE = 4,\r
55\r
56///\r
57/// The buffer was not large enough to hold the requested data.\r
58/// The required buffer size is returned in the appropriate\r
59/// parameter when this error occurs.\r
60///\r
61SHELL_BUFFER_TOO_SMALL = 5,\r
62\r
63///\r
64/// There is no data pending upon return.\r
65///\r
66SHELL_NOT_READY = 6,\r
67\r
68///\r
69/// The physical device reported an error while attempting the\r
70/// operation.\r
71///\r
72SHELL_DEVICE_ERROR = 7,\r
73\r
74///\r
a405b86d 75/// The device cannot be written to.\r
e7d41e18 76///\r
77SHELL_WRITE_PROTECTED = 8,\r
78\r
79///\r
80/// The resource has run out.\r
81///\r
82SHELL_OUT_OF_RESOURCES = 9,\r
83\r
84///\r
1e6e84c7 85/// An inconsistency was detected on the file system causing the\r
e7d41e18 86/// operation to fail.\r
87///\r
88SHELL_VOLUME_CORRUPTED = 10,\r
89\r
90///\r
91/// There is no more space on the file system.\r
92///\r
93SHELL_VOLUME_FULL = 11,\r
94\r
95///\r
1e6e84c7 96/// The device does not contain any medium to perform the\r
e7d41e18 97/// operation.\r
98///\r
99SHELL_NO_MEDIA = 12,\r
100\r
101///\r
102/// The medium in the device has changed since the last\r
103/// access.\r
104///\r
105SHELL_MEDIA_CHANGED = 13,\r
106\r
107///\r
108/// The item was not found.\r
109///\r
110SHELL_NOT_FOUND = 14,\r
111\r
112///\r
113/// Access was denied.\r
114///\r
115SHELL_ACCESS_DENIED = 15,\r
116\r
117// note the skipping of 16 and 17\r
118\r
119///\r
120/// A timeout time expired.\r
121///\r
122SHELL_TIMEOUT = 18,\r
123\r
124///\r
125/// The protocol has not been started.\r
126///\r
127SHELL_NOT_STARTED = 19,\r
128\r
129///\r
130/// The protocol has already been started.\r
131///\r
132SHELL_ALREADY_STARTED = 20,\r
133\r
134///\r
135/// The operation was aborted.\r
136///\r
137SHELL_ABORTED = 21,\r
138\r
139// note the skipping of 22, 23, and 24\r
140\r
141///\r
142/// A function encountered an internal version that was\r
143/// incompatible with a version requested by the caller.\r
144///\r
145SHELL_INCOMPATIBLE_VERSION = 25,\r
146\r
147///\r
148/// The function was not performed due to a security violation.\r
149///\r
150SHELL_SECURITY_VIOLATION = 26,\r
151\r
152///\r
ef34de25 153/// The function was performed and resulted in an unequal\r
154/// comparison..\r
e7d41e18 155///\r
ef34de25 156SHELL_NOT_EQUAL = 27\r
e7d41e18 157}SHELL_STATUS;\r
158\r
125c2cf4 159#endif //__SHELL_BASE__