Add CEF API hash and version info retrieval functions (issue #914).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1160 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2013-03-25 21:54:53 +00:00
parent fe30a139a7
commit e185bcb54d
8 changed files with 337 additions and 8 deletions

View File

@@ -6,7 +6,26 @@
#include "include/cef_version.h"
#include "cef_logging.h"
CEF_EXPORT int cef_build_revision()
{
CEF_EXPORT int cef_build_revision() {
return CEF_REVISION;
}
CEF_EXPORT int cef_version_info(int entry) {
switch (entry) {
case 0: return CEF_VERSION_MAJOR;
case 1: return CEF_REVISION;
case 2: return CHROME_VERSION_MAJOR;
case 3: return CHROME_VERSION_MINOR;
case 4: return CHROME_VERSION_BUILD;
case 5: return CHROME_VERSION_PATCH;
default: return 0;
}
}
CEF_EXPORT const char* cef_api_hash(int entry) {
switch (entry) {
case 0: return CEF_API_HASH_PLATFORM;
case 1: return CEF_API_HASH_UNIVERSAL;
default: return NULL;
}
}