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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 //! \brief The stream type for MINIDUMP_EXCEPTION_STREAM. | 64 //! \brief The stream type for MINIDUMP_EXCEPTION_STREAM. |
65 //! | 65 //! |
66 //! \sa ExceptionStream | 66 //! \sa ExceptionStream |
67 kMinidumpStreamTypeException = ExceptionStream, | 67 kMinidumpStreamTypeException = ExceptionStream, |
68 | 68 |
69 //! \brief The stream type for MINIDUMP_SYSTEM_INFO. | 69 //! \brief The stream type for MINIDUMP_SYSTEM_INFO. |
70 //! | 70 //! |
71 //! \sa SystemInfoStream | 71 //! \sa SystemInfoStream |
72 kMinidumpStreamTypeSystemInfo = SystemInfoStream, | 72 kMinidumpStreamTypeSystemInfo = SystemInfoStream, |
73 | 73 |
| 74 //! \brief The stream type for MINIDUMP_HANDLE_DATA_STREAM. |
| 75 //! |
| 76 //! \sa HandleDataStream |
| 77 kMinidumpStreamTypeHandleData = HandleDataStream, |
| 78 |
74 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2, | 79 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2, |
75 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4. | 80 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4. |
76 //! | 81 //! |
77 //! \sa MiscInfoStream | 82 //! \sa MiscInfoStream |
78 kMinidumpStreamTypeMiscInfo = MiscInfoStream, | 83 kMinidumpStreamTypeMiscInfo = MiscInfoStream, |
79 | 84 |
80 //! \brief The stream type for MINIDUMP_MEMORY_INFO_LIST. | 85 //! \brief The stream type for MINIDUMP_MEMORY_INFO_LIST. |
81 //! | 86 //! |
82 //! \sa MemoryInfoListStream | 87 //! \sa MemoryInfoListStream |
83 kMinidumpStreamTypeMemoryInfoList = MemoryInfoListStream, | 88 kMinidumpStreamTypeMemoryInfoList = MemoryInfoListStream, |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 #if defined(COMPILER_MSVC) | 427 #if defined(COMPILER_MSVC) |
423 #pragma pack(pop) | 428 #pragma pack(pop) |
424 #endif // COMPILER_MSVC | 429 #endif // COMPILER_MSVC |
425 #undef PACKED | 430 #undef PACKED |
426 | 431 |
427 MSVC_POP_WARNING(); // C4200 | 432 MSVC_POP_WARNING(); // C4200 |
428 | 433 |
429 } // namespace crashpad | 434 } // namespace crashpad |
430 | 435 |
431 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_ | 436 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_ |
OLD | NEW |