OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (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 |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #ifndef CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_ |
| 16 #define CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_ |
| 17 |
| 18 #include <windows.h> |
| 19 #include <stdint.h> |
| 20 |
| 21 #include "util/win/address_types.h" |
| 22 |
| 23 namespace crashpad { |
| 24 |
| 25 #pragma pack(push, 1) |
| 26 //! \brief A client registration request. |
| 27 struct RegistrationRequest { |
| 28 //! \brief The PID of the client process. |
| 29 DWORD client_process_id; |
| 30 //! \brief The address, in the client process address space, of a CrashpadInfo |
| 31 //! structure. |
| 32 crashpad::WinVMAddress crashpad_info_address; |
| 33 }; |
| 34 #pragma pack(pop) |
| 35 |
| 36 #pragma pack(push, 1) |
| 37 //! \brief A client registration response. See |
| 38 //! https://msdn.microsoft.com/en-us/library/windows/desktop/aa384203 for |
| 39 //! details on communicating handle values between 32-bit and 64-bit |
| 40 //! processes. |
| 41 struct RegistrationResponse { |
| 42 //! \brief An event `HANDLE`, valid in the client process, that should be |
| 43 //! signaled to request a crash report. 64-bit clients should convert the |
| 44 //! value to a `HANDLE` using sign-extension. |
| 45 uint32_t request_report_event; |
| 46 //! \brief An event `HANDLE`, valid in the client process, that will be |
| 47 //! signaled when the requested crash report is complete. 64-bit clients |
| 48 //! should convert the value to a `HANDLE` using sign-extension. |
| 49 uint32_t report_complete_event; |
| 50 }; |
| 51 #pragma pack(pop) |
| 52 |
| 53 } // namespace crashpad |
| 54 |
| 55 #endif // CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_ |
OLD | NEW |