2011-12-08 02:38:30 +01:00
|
|
|
// Copyright (c) 2011 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "include/cef_nplugin.h"
|
2011-12-23 18:36:30 +01:00
|
|
|
#include "include/capi/cef_nplugin_capi.h"
|
|
|
|
#include "include/cef_version.h"
|
2012-01-10 00:46:23 +01:00
|
|
|
#include "libcef_dll/cef_logging.h"
|
2011-12-08 02:38:30 +01:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
CEF_EXPORT int cef_build_revision() {
|
2011-12-08 02:38:30 +01:00
|
|
|
return CEF_REVISION;
|
|
|
|
}
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
CEF_EXPORT int cef_register_plugin(const cef_plugin_info_t* plugin_info) {
|
2011-12-08 02:38:30 +01:00
|
|
|
DCHECK(plugin_info);
|
|
|
|
if (!plugin_info)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return CefRegisterPlugin(*plugin_info);
|
|
|
|
}
|