mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user