Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/shared/Utils.h

Issue 5171515343503360: Issue #41 - Bring method of determining IE version up to date (Closed)
Patch Set: Second version Created June 25, 2014, 6:53 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/shared/Utils.h
===================================================================
--- a/src/shared/Utils.h
+++ b/src/shared/Utils.h
@@ -50,4 +50,26 @@
return trimmed;
}
+namespace ABP
+{
+ namespace IE
+ {
+ /**
+ * Retrieve the full version string of the currently installed IE.
+ *
+ * C++11 noexcept.
+ * Returns an empty string if there was a problem retrieving the version string.
+ */
+ std::wstring installed_version_string();
+
+ /**
+ * Retrieve the major version number of the currently installed IE.
+ *
+ * C++11 noexcept.
+ * Returns 0 if there was a problem retrieving the version string.
+ */
+ int installed_major_version();
+ }
+}
+
#endif // UTILS_H

Powered by Google App Engine
This is Rietveld