
it's official. even msdn now says SHGetMalloc returns the same allocator CoTaskMemFree uses and a little debugging backs this even on Windows 95 git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5004 212acab6-be3b-0410-9dea-997c60f758d6
29 lines
329 B
Python
29 lines
329 B
Python
target = 'StartMenu'
|
|
|
|
files = Split("""
|
|
StartMenu.c
|
|
""")
|
|
|
|
resources = Split("""
|
|
StartMenu.rc
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
user32
|
|
gdi32
|
|
shell32
|
|
ole32
|
|
""")
|
|
|
|
examples = Split("""
|
|
Example.nsi
|
|
""")
|
|
|
|
docs = Split("""
|
|
Readme.txt
|
|
""")
|
|
|
|
Import('BuildPlugin')
|
|
|
|
BuildPlugin(target, files, libs, examples, docs, res = resources)
|