Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Arm
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Arm/ProcessorBind.h
r48674 r58459 2 2 Processor or Compiler specific defines and types for ARM. 3 3 4 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> 5 5 Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR> 6 6 This program and the accompanying materials … … 31 31 #if _MSC_EXTENSIONS 32 32 // 33 // use Microsoft* C complier dependent inte rger width types33 // use Microsoft* C complier dependent integer width types 34 34 // 35 35 typedef unsigned __int64 UINT64; … … 43 43 typedef unsigned char UINT8; 44 44 typedef char CHAR8; 45 typedef charINT8;45 typedef signed char INT8; 46 46 #else 47 47 // … … 59 59 typedef unsigned char UINT8; 60 60 typedef char CHAR8; 61 typedef charINT8;61 typedef signed char INT8; 62 62 #endif 63 63 … … 92 92 /// 93 93 #define MAX_ADDRESS 0xFFFFFFFF 94 95 /// 96 /// Maximum legal ARM INTN and UINTN values. 97 /// 98 #define MAX_INTN ((INTN)0x7FFFFFFF) 99 #define MAX_UINTN ((UINTN)0xFFFFFFFF) 94 100 95 101 /// … … 153 159 #define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer) 154 160 161 #ifndef __USER_LABEL_PREFIX__ 162 #define __USER_LABEL_PREFIX__ 163 #endif 164 155 165 #endif 156 166
Note:
See TracChangeset
for help on using the changeset viewer.