| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 #define PROCESSOR_ARCHITECTURE_MSIL 8 | 62 #define PROCESSOR_ARCHITECTURE_MSIL 8 |
| 63 #define PROCESSOR_ARCHITECTURE_AMD64 9 | 63 #define PROCESSOR_ARCHITECTURE_AMD64 9 |
| 64 #define PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 10 | 64 #define PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 10 |
| 65 #define PROCESSOR_ARCHITECTURE_NEUTRAL 11 | 65 #define PROCESSOR_ARCHITECTURE_NEUTRAL 11 |
| 66 #define PROCESSOR_ARCHITECTURE_UNKNOWN 0xffff | 66 #define PROCESSOR_ARCHITECTURE_UNKNOWN 0xffff |
| 67 //! \} | 67 //! \} |
| 68 | 68 |
| 69 //! \anchor PF_x | 69 //! \anchor PF_x |
| 70 //! \name PF_* | 70 //! \name PF_* |
| 71 //! | 71 //! |
| 72 //! \brief CPU feature values for | 72 //! \brief CPU feature values for \ref CPU_INFORMATION::ProcessorFeatures |
| 73 //! CPU_INFORMATION::OtherCpuInfo::ProcessorFeatures. | 73 //! "CPU_INFORMATION::OtherCpuInfo::ProcessorFeatures". |
| 74 //! | 74 //! |
| 75 //! \{ | 75 //! \{ |
| 76 #define PF_FLOATING_POINT_PRECISION_ERRATA 0 | 76 #define PF_FLOATING_POINT_PRECISION_ERRATA 0 |
| 77 #define PF_FLOATING_POINT_EMULATED 1 | 77 #define PF_FLOATING_POINT_EMULATED 1 |
| 78 #define PF_COMPARE_EXCHANGE_DOUBLE 2 | 78 #define PF_COMPARE_EXCHANGE_DOUBLE 2 |
| 79 #define PF_MMX_INSTRUCTIONS_AVAILABLE 3 | 79 #define PF_MMX_INSTRUCTIONS_AVAILABLE 3 |
| 80 #define PF_PPC_MOVEMEM_64BIT_OK 4 | 80 #define PF_PPC_MOVEMEM_64BIT_OK 4 |
| 81 #define PF_ALPHA_BYTE_INSTRUCTIONS 5 | 81 #define PF_ALPHA_BYTE_INSTRUCTIONS 5 |
| 82 #define PF_XMMI_INSTRUCTIONS_AVAILABLE 6 | 82 #define PF_XMMI_INSTRUCTIONS_AVAILABLE 6 |
| 83 #define PF_3DNOW_INSTRUCTIONS_AVAILABLE 7 | 83 #define PF_3DNOW_INSTRUCTIONS_AVAILABLE 7 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 //! \brief Operating system family values for MINIDUMP_SYSTEM_INFO::PlatformId. | 173 //! \brief Operating system family values for MINIDUMP_SYSTEM_INFO::PlatformId. |
| 174 //! | 174 //! |
| 175 //! \sa crashpad::MinidumpOS | 175 //! \sa crashpad::MinidumpOS |
| 176 //! \{ | 176 //! \{ |
| 177 #define VER_PLATFORM_WIN32s 0 | 177 #define VER_PLATFORM_WIN32s 0 |
| 178 #define VER_PLATFORM_WIN32_WINDOWS 1 | 178 #define VER_PLATFORM_WIN32_WINDOWS 1 |
| 179 #define VER_PLATFORM_WIN32_NT 2 | 179 #define VER_PLATFORM_WIN32_NT 2 |
| 180 //! \} | 180 //! \} |
| 181 | 181 |
| 182 #endif // CRASHPAD_COMPAT_NON_WIN_WINNT_H_ | 182 #endif // CRASHPAD_COMPAT_NON_WIN_WINNT_H_ |
| OLD | NEW |