| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_IMPORTER_PSTORE_DECLARATIONS_H_ | 5 #ifndef CHROME_COMMON_IMPORTER_PSTORE_DECLARATIONS_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_PSTORE_DECLARATIONS_H_ | 6 #define CHROME_COMMON_IMPORTER_PSTORE_DECLARATIONS_H_ |
| 7 | 7 |
| 8 #ifdef __PSTORE_H__ | 8 #ifdef __PSTORE_H__ |
| 9 #error Should not include pstore.h and this file simultaneously. | 9 #error Should not include pstore.h and this file simultaneously. |
| 10 #endif | 10 #endif |
| 11 | 11 |
| 12 #include <ole2.h> | 12 #include <ole2.h> |
| 13 | 13 |
| 14 // pstore.h is no longer shipped in the Windows 8 SDK. Define a minimal set | 14 // pstore.h is no longer shipped in the Windows 8 SDK. Define a minimal set |
| 15 // here. | 15 // here. |
| 16 | 16 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 DWORD dwFlags) = 0; | 172 DWORD dwFlags) = 0; |
| 173 | 173 |
| 174 virtual HRESULT STDMETHODCALLTYPE EnumItems( | 174 virtual HRESULT STDMETHODCALLTYPE EnumItems( |
| 175 PST_KEY Key, | 175 PST_KEY Key, |
| 176 const GUID __RPC_FAR *pItemType, | 176 const GUID __RPC_FAR *pItemType, |
| 177 const GUID __RPC_FAR *pItemSubtype, | 177 const GUID __RPC_FAR *pItemSubtype, |
| 178 DWORD dwFlags, | 178 DWORD dwFlags, |
| 179 IEnumPStoreItems __RPC_FAR *__RPC_FAR *ppenum) = 0; | 179 IEnumPStoreItems __RPC_FAR *__RPC_FAR *ppenum) = 0; |
| 180 }; | 180 }; |
| 181 | 181 |
| 182 #endif // CHROME_BROWSER_IMPORTER_PSTORE_DECLARATIONS_H_ | 182 #endif // CHROME_COMMON_IMPORTER_PSTORE_DECLARATIONS_H_ |
| OLD | NEW |