summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions/quickstarter/quickstarter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'setup_native/source/win32/customactions/quickstarter/quickstarter.hxx')
-rw-r--r--setup_native/source/win32/customactions/quickstarter/quickstarter.hxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/setup_native/source/win32/customactions/quickstarter/quickstarter.hxx b/setup_native/source/win32/customactions/quickstarter/quickstarter.hxx
new file mode 100644
index 000000000000..9ec8da1df10f
--- /dev/null
+++ b/setup_native/source/win32/customactions/quickstarter/quickstarter.hxx
@@ -0,0 +1,18 @@
+#pragma once
+
+#ifdef _MSC_VER
+#pragma warning(push, 1) /* disable warnings within system headers */
+#endif
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+#include <msiquery.h>
+#ifdef _MSC_VER
+#pragma warning(pop)
+#endif
+
+#include <string>
+
+std::string GetOfficeInstallationPath(MSIHANDLE handle);
+std::string GetOfficeProductName(MSIHANDLE handle);
+std::string GetQuickstarterLinkName(MSIHANDLE handle);
+std::string GetProcessImagePath( DWORD dwProcessId );