OLD | NEW |
| (Empty) |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WEBKIT_ACTIVEX_SHIM_NPP_IMPL_H__ | |
6 #define WEBKIT_ACTIVEX_SHIM_NPP_IMPL_H__ | |
7 | |
8 #include "webkit/glue/plugins/nphostapi.h" | |
9 | |
10 namespace activex_shim { | |
11 | |
12 // Entry functions. To avoid name conflict when used in activex_shim_dll, they | |
13 // are additionally prefixed. | |
14 NPError WINAPI ActiveX_Shim_NP_GetEntryPoints(NPPluginFuncs* funcs); | |
15 NPError WINAPI ActiveX_Shim_NP_Initialize(NPNetscapeFuncs* funcs); | |
16 NPError WINAPI ActiveX_Shim_NP_Shutdown(void); | |
17 | |
18 // Initialized in NP_Initialize. | |
19 extern NPNetscapeFuncs* g_browser; | |
20 | |
21 } // namespace activex_shim | |
22 | |
23 #endif // #ifndef WEBKIT_ACTIVEX_SHIM_NPP_IMPL_H__ | |
OLD | NEW |