mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-22 07:27:55 +01:00
ee6faa0706
- Allow more cefclient tests to work in the off-screen rendering example. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1058 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
22 lines
624 B
C
22 lines
624 B
C
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|
|
#define CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|
|
#pragma once
|
|
|
|
#include "include/internal/cef_types.h"
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include "include/cef_nplugin.h"
|
|
|
|
NPError API_CALL NP_ClientGetEntryPoints(NPPluginFuncs* pFuncs);
|
|
NPError API_CALL NP_ClientInitialize(NPNetscapeFuncs* pFuncs);
|
|
NPError API_CALL NP_ClientShutdown(void);
|
|
|
|
#endif // OS_WIN
|
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|