Changes

No change in size ,  22:43, 26 February 2019
m
Fixed a typo
Line 6: Line 6:  
This has size 0x1018 and contains the error code, a short description of the error and a more detailed description of the error, displayed when the user clicks on "Details". Typically, all unused values can be set to zero. The first byte should be set to 1 if a custom error message is to be displayed. Otherwise, a default error message will be shown.
 
This has size 0x1018 and contains the error code, a short description of the error and a more detailed description of the error, displayed when the user clicks on "Details". Typically, all unused values can be set to zero. The first byte should be set to 1 if a custom error message is to be displayed. Otherwise, a default error message will be shown.
   −
The error code is stored at offsets 0x8, containing the first part of the code, and 0xC, containing the second part of the code. Those values are expected to be u64's.
+
The error code is stored at offsets 0x8, containing the first part of the code, and 0xC, containing the second part of the code. Those values are expected to be u32's.
    
The short description of the error is stored as a char* at offset 0x18, the long description of the error is stored as a char* at offset 0x818.
 
The short description of the error is stored as a char* at offset 0x18, the long description of the error is stored as a char* at offset 0x818.
7

edits