| OLD | NEW |
| 1 /* | |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH | |
| 4 * | |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | |
| 6 * it under the terms of the GNU General Public License version 3 as | |
| 7 * published by the Free Software Foundation. | |
| 8 * | |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 * GNU General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU General Public License | |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 16 */ | |
| 17 | |
| 18 #ifndef PASSTHROUGHAPP_PASSTHROUGHOBJECT_H | 1 #ifndef PASSTHROUGHAPP_PASSTHROUGHOBJECT_H |
| 19 #define PASSTHROUGHAPP_PASSTHROUGHOBJECT_H | 2 #define PASSTHROUGHAPP_PASSTHROUGHOBJECT_H |
| 20 | 3 |
| 21 // {C38D254C-4C40-4192-A746-AC6FE519831E} | 4 // {C38D254C-4C40-4192-A746-AC6FE519831E} |
| 22 extern "C" const __declspec(selectany) IID IID_IPassthroughObject = | 5 extern "C" const __declspec(selectany) IID IID_IPassthroughObject = |
| 23 {0xc38d254c, 0x4c40, 0x4192, | 6 » {0xc38d254c, 0x4c40, 0x4192, |
| 24 {0xa7, 0x46, 0xac, 0x6f, 0xe5, 0x19, 0x83, 0x1e}}; | 7 » » {0xa7, 0x46, 0xac, 0x6f, 0xe5, 0x19, 0x83, 0x1e}}; |
| 25 | 8 |
| 26 struct | 9 struct |
| 27 __declspec(uuid("{C38D254C-4C40-4192-A746-AC6FE519831E}")) | 10 __declspec(uuid("{C38D254C-4C40-4192-A746-AC6FE519831E}")) |
| 28 __declspec(novtable) | 11 __declspec(novtable) |
| 29 IPassthroughObject : public IUnknown | 12 IPassthroughObject : public IUnknown |
| 30 { | 13 { |
| 31 STDMETHOD(SetTargetUnknown)(IUnknown* punkTarget) = 0; | 14 » STDMETHOD(SetTargetUnknown)(IUnknown* punkTarget) = 0; |
| 32 }; | 15 }; |
| 33 | 16 |
| 34 #if _ATL_VER < 0x700 | 17 #if _ATL_VER < 0x700 |
| 35 #define InlineIsEqualGUID ::ATL::InlineIsEqualGUID | 18 » #define InlineIsEqualGUID ::ATL::InlineIsEqualGUID |
| 36 #else | 19 #else |
| 37 #define InlineIsEqualGUID ::InlineIsEqualGUID | 20 » #define InlineIsEqualGUID ::InlineIsEqualGUID |
| 38 #endif | 21 #endif |
| 39 | 22 |
| 40 #endif // PASSTHROUGHAPP_PASSTHROUGHOBJECT_H | 23 #endif // PASSTHROUGHAPP_PASSTHROUGHOBJECT_H |
| OLD | NEW |