#pragma once #ifdef _MSC_VER #pragma warning(push, 1) /* disable warnings within system headers */ #endif #define WIN32_LEAN_AND_MEAN #include #include #ifdef _MSC_VER #pragma warning(pop) #endif #include std::string GetOfficeInstallationPath(MSIHANDLE handle); std::string GetOfficeProductName(MSIHANDLE handle); std::string GetQuickstarterLinkName(MSIHANDLE handle); std::string GetProcessImagePath( DWORD dwProcessId );