OLD | NEW |
1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 //! | 70 //! |
71 //! \sa SystemInfoStream | 71 //! \sa SystemInfoStream |
72 kMinidumpStreamTypeSystemInfo = SystemInfoStream, | 72 kMinidumpStreamTypeSystemInfo = SystemInfoStream, |
73 | 73 |
74 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2, | 74 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2, |
75 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4. | 75 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4. |
76 //! | 76 //! |
77 //! \sa MiscInfoStream | 77 //! \sa MiscInfoStream |
78 kMinidumpStreamTypeMiscInfo = MiscInfoStream, | 78 kMinidumpStreamTypeMiscInfo = MiscInfoStream, |
79 | 79 |
| 80 //! \brief The stream type for MINIDUMP_MEMORY_INFO_LIST. |
| 81 //! |
| 82 //! \sa MemoryInfoListStream |
| 83 kMinidumpStreamTypeMemoryInfoList = MemoryInfoListStream, |
| 84 |
80 // 0x4350 = "CP" | 85 // 0x4350 = "CP" |
81 | 86 |
82 //! \brief The stream type for MinidumpCrashpadInfo. | 87 //! \brief The stream type for MinidumpCrashpadInfo. |
83 kMinidumpStreamTypeCrashpadInfo = 0x43500001, | 88 kMinidumpStreamTypeCrashpadInfo = 0x43500001, |
84 }; | 89 }; |
85 | 90 |
86 //! \brief A variable-length UTF-8-encoded string carried within a minidump | 91 //! \brief A variable-length UTF-8-encoded string carried within a minidump |
87 //! file. | 92 //! file. |
88 //! | 93 //! |
89 //! \sa MINIDUMP_STRING | 94 //! \sa MINIDUMP_STRING |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 #if defined(COMPILER_MSVC) | 422 #if defined(COMPILER_MSVC) |
418 #pragma pack(pop) | 423 #pragma pack(pop) |
419 #endif // COMPILER_MSVC | 424 #endif // COMPILER_MSVC |
420 #undef PACKED | 425 #undef PACKED |
421 | 426 |
422 MSVC_POP_WARNING(); // C4200 | 427 MSVC_POP_WARNING(); // C4200 |
423 | 428 |
424 } // namespace crashpad | 429 } // namespace crashpad |
425 | 430 |
426 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_ | 431 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_ |
OLD | NEW |