When available, use shfolder.dll to get special folder locations. This allows folders like the application data folder for all users to be used on Windows 95/98 when Internet Explorer 5 is installed.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5195 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2007-07-10 21:33:06 +00:00
parent a87208a617
commit 5648dd2ace
2 changed files with 18 additions and 6 deletions

View file

@ -102,7 +102,8 @@ enum myGetProcAddressFunctions {
MGA_LookupPrivilegeValueA,
MGA_AdjustTokenPrivileges,
MGA_GetUserDefaultUILanguage,
MGA_SHAutoComplete
MGA_SHAutoComplete,
MGA_SHGetFolderPathA
};
void * NSISCALL myGetProcAddress(const enum myGetProcAddressFunctions func);