Statistiques
| Révision :

root / tmp / org.txm.setups / nsis / Include / Integration.nsh @ 3101

Historique | Voir | Annoter | Télécharger (1,21 ko)

1 2956 mdecorde
!verbose push 3
2 2956 mdecorde
!ifndef INTEGRATION_INCLUDED
3 2956 mdecorde
!define INTEGRATION_INCLUDED 1
4 2956 mdecorde
5 2956 mdecorde
!include "Util.nsh"
6 2956 mdecorde
7 2956 mdecorde
8 2956 mdecorde
!define NotifyShell_AssocChanged `System::Call 'SHELL32::SHChangeNotify(i0x8000000,i0,p0,p0)'` ; Notify the shell with SHCNE_ASSOCCHANGED
9 2956 mdecorde
10 2956 mdecorde
11 2956 mdecorde
!define UnpinShortcut "!insertmacro UnpinShortcut "
12 2956 mdecorde
!macro UnpinShortcut lnkpath
13 2956 mdecorde
Push "${lnkpath}"
14 2956 mdecorde
${CallArtificialFunction} UnpinShortcut_Implementation
15 2956 mdecorde
!macroend
16 2956 mdecorde
!macro UnpinShortcut_Implementation
17 2956 mdecorde
!include "LogicLib.nsh"
18 2956 mdecorde
!include "Win\COM.nsh"
19 2956 mdecorde
Exch $0
20 2956 mdecorde
Push $1
21 2956 mdecorde
!insertmacro ComHlpr_CreateInProcInstance ${CLSID_StartMenuPin} ${IID_IStartMenuPinnedList} r1 ""
22 2956 mdecorde
${If} $1 P<> 0
23 2956 mdecorde
    System::Call 'SHELL32::SHCreateItemFromParsingName(wr0,p0,g"${IID_IShellItem}",*p0r0)'
24 2956 mdecorde
    ${If} $0 P<> 0
25 2956 mdecorde
        ${IStartMenuPinnedList::RemoveFromList} $1 '(r0)'
26 2956 mdecorde
        ${IUnknown::Release} $0 ""
27 2956 mdecorde
    ${EndIf}
28 2956 mdecorde
    ${IUnknown::Release} $1 ""
29 2956 mdecorde
!ifdef NSIS_IX86 | NSIS_AMD64
30 2956 mdecorde
${Else}
31 2956 mdecorde
  !insertmacro ComHlpr_CreateInProcInstance ${CLSID_StartMenuPin} "{ec35e37a-6579-4f3c-93cd-6e62c4ef7636}" r1 ""
32 2956 mdecorde
  ${If} $1 P<> 0
33 2956 mdecorde
    ExecShellWait /INVOKEIDLIST "unpin" $0 ; WinXP
34 2956 mdecorde
    ${IUnknown::Release} $1 ""
35 2956 mdecorde
  ${EndIf}
36 2956 mdecorde
!endif
37 2956 mdecorde
${EndIf}
38 2956 mdecorde
Pop $1
39 2956 mdecorde
Pop $0
40 2956 mdecorde
!macroend
41 2956 mdecorde
42 2956 mdecorde
43 2956 mdecorde
!endif #!INCLUDED
44 2956 mdecorde
!verbose pop