mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-07 04:36:30 +00:00
Add the capability to include an arbitrary data stream within minidumps
This is supplied via a custom field "custom-data-stream" Review URL: https://breakpad.appspot.com/408002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@984 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -331,7 +331,8 @@ typedef enum {
|
||||
|
||||
/* Breakpad extension types. 0x4767 = "Gg" */
|
||||
MD_BREAKPAD_INFO_STREAM = 0x47670001, /* MDRawBreakpadInfo */
|
||||
MD_ASSERTION_INFO_STREAM = 0x47670002 /* MDRawAssertionInfo */
|
||||
MD_ASSERTION_INFO_STREAM = 0x47670002, /* MDRawAssertionInfo */
|
||||
MD_CUSTOM_DATA_STREAM = 0x47670003 /* MDRawCustomDataStream */
|
||||
} MDStreamType; /* MINIDUMP_STREAM_TYPE */
|
||||
|
||||
|
||||
@@ -724,6 +725,9 @@ typedef enum {
|
||||
* Breakpad extension types
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
u_int8_t stream[1];
|
||||
} MDRawCustomDataStream;
|
||||
|
||||
typedef struct {
|
||||
/* validity is a bitmask with values from MDBreakpadInfoValidity, indicating
|
||||
|
||||
Reference in New Issue
Block a user