Home
last modified time | relevance | path

Searched refs:hMSI (Results 1 – 10 of 10) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx109 MsiGetPropertyW( hMSI, pPropName, buff, &sz ); in GetMsiPropW()
122 if ( GetMsiPropW( hMSI, L"INSTALLLOCATION", &pProgPath ) && pProgPath ) in GetActiveXControlPath()
238 static bool MakeInstallForAllUsers( MSIHANDLE hMSI ) in MakeInstallForAllUsers() argument
242 if ( GetMsiPropW( hMSI, L"ALLUSERS", &pVal ) && pVal ) in MakeInstallForAllUsers()
252 static bool MakeInstallFor64Bit( MSIHANDLE hMSI ) in MakeInstallFor64Bit() argument
256 if ( GetMsiPropW( hMSI, L"VersionNT64", &pVal ) && pVal ) in MakeInstallFor64Bit()
275 bool bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in InstallActiveXControl()
276 bool bInstallFor64Bit = MakeInstallFor64Bit( hMSI ); in InstallActiveXControl()
279 if ( GetActiveXControlPath( hMSI, &pActiveXPath ) && pActiveXPath in InstallActiveXControl()
322 bool bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in DeinstallActiveXControl()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx109 MsiGetPropertyW( hMSI, pPropName, buff, &sz ); in GetMsiPropW()
122 if ( GetMsiPropW( hMSI, L"INSTALLLOCATION", &pProgPath ) && pProgPath ) in GetActiveXControlPath()
238 static BOOL MakeInstallForAllUsers( MSIHANDLE hMSI ) in MakeInstallForAllUsers() argument
242 if ( GetMsiPropW( hMSI, L"ALLUSERS", &pVal ) && pVal ) in MakeInstallForAllUsers()
252 static BOOL MakeInstallFor64Bit( MSIHANDLE hMSI ) in MakeInstallFor64Bit() argument
256 if ( GetMsiPropW( hMSI, L"VersionNT64", &pVal ) && pVal ) in MakeInstallFor64Bit()
275 BOOL bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in InstallActiveXControl()
276 BOOL bInstallFor64Bit = MakeInstallFor64Bit( hMSI ); in InstallActiveXControl()
279 if ( GetActiveXControlPath( hMSI, &pActiveXPath ) && pActiveXPath in InstallActiveXControl()
322 BOOL bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in DeinstallActiveXControl()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/setup_native/source/win32/customactions/tools/
H A Dcheckversion.cxx33 static bool GetMsiPropW( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiPropW() argument
36 if ( MsiGetPropertyW( hMSI, pPropName, const_cast<wchar_t *>(L""), &sz ) == ERROR_MORE_DATA ) in GetMsiPropW()
43 MsiGetPropertyW( hMSI, pPropName, buff, &sz ); in GetMsiPropW()
71 extern "C" __declspec(dllexport) UINT __stdcall CheckVersions( MSIHANDLE hMSI ) in CheckVersions() argument
77 if ( GetMsiPropW( hMSI, L"NEWPRODUCTS", &pVal ) && pVal ) in CheckVersions()
85 if ( GetMsiPropW( hMSI, L"OLDPRODUCTS", &pVal ) && pVal ) in CheckVersions()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/setup_native/source/win32/customactions/tools/
H A Dcheckversion.cxx33 static BOOL GetMsiPropW( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiPropW() argument
36 if ( MsiGetPropertyW( hMSI, pPropName, const_cast<wchar_t *>(L""), &sz ) == ERROR_MORE_DATA ) in GetMsiPropW()
43 MsiGetPropertyW( hMSI, pPropName, buff, &sz ); in GetMsiPropW()
71 extern "C" __declspec(dllexport) UINT __stdcall CheckVersions( MSIHANDLE hMSI ) in CheckVersions() argument
77 if ( GetMsiPropW( hMSI, L"NEWPRODUCTS", &pVal ) && pVal ) in CheckVersions()
85 if ( GetMsiPropW( hMSI, L"OLDPRODUCTS", &pVal ) && pVal ) in CheckVersions()
/dports/editors/libreoffice/libreoffice-7.2.6.2/setup_native/source/win32/customactions/quickstarter/
H A Dshutdown_quickstart.cxx26 MSIHANDLE hMSI = static_cast< MSIHANDLE >( lParam ); in EnumWindowsProc() local
38 std::wstring sOfficeImageDir = GetOfficeInstallationPathW( hMSI ) + L"program\\"; in EnumWindowsProc()
66 extern "C" __declspec(dllexport) UINT __stdcall ShutDownQuickstarter( MSIHANDLE hMSI ) in ShutDownQuickstarter() argument
68 EnumWindows( EnumWindowsProc, hMSI ); in ShutDownQuickstarter()
H A Dremove_quickstart_link.cxx24 extern "C" __declspec(dllexport) UINT __stdcall RemoveQuickstarterLink(MSIHANDLE hMSI) in RemoveQuickstarterLink() argument
33 sQuickstartLinkPath += GetQuickstarterLinkNameW(hMSI); in RemoveQuickstarterLink()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/setup_native/source/win32/customactions/quickstarter/
H A Dshutdown_quickstart.cxx26 MSIHANDLE hMSI = static_cast< MSIHANDLE >( lParam ); in EnumWindowsProc() local
38 std::wstring sOfficeImageDir = GetOfficeInstallationPathW( hMSI ) + L"program\\"; in EnumWindowsProc()
66 extern "C" __declspec(dllexport) UINT __stdcall ShutDownQuickstarter( MSIHANDLE hMSI ) in ShutDownQuickstarter() argument
68 EnumWindows( EnumWindowsProc, hMSI ); in ShutDownQuickstarter()
H A Dremove_quickstart_link.cxx24 extern "C" __declspec(dllexport) UINT __stdcall RemoveQuickstarterLink( MSIHANDLE hMSI ) in RemoveQuickstarterLink() argument
33 sQuickstartLinkPath += GetQuickstarterLinkNameW( hMSI ); in RemoveQuickstarterLink()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/setup_native/source/win32/customactions/sellang/
H A Dsellang.cxx41 static BOOL GetMsiPropA( MSIHANDLE hMSI, const char* pPropName, char** ppValue ) in GetMsiPropA() argument
44 if ( MsiGetPropertyA( hMSI, pPropName, const_cast<char *>(""), &sz ) == ERROR_MORE_DATA ) { in GetMsiPropA()
50 MsiGetPropertyA( hMSI, pPropName, buff, &sz ); in GetMsiPropA()
/dports/editors/libreoffice/libreoffice-7.2.6.2/setup_native/source/win32/customactions/sellang/
H A Dsellang.cxx41 static bool GetMsiPropA( MSIHANDLE hMSI, const char* pPropName, char** ppValue ) in GetMsiPropA() argument
44 if ( MsiGetPropertyA( hMSI, pPropName, const_cast<char *>(""), &sz ) == ERROR_MORE_DATA ) { in GetMsiPropA()
50 MsiGetPropertyA( hMSI, pPropName, buff, &sz ); in GetMsiPropA()