1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-19 07:21:20 +03:00

add SHPathPrepareForWrite()

This commit should help for some MMF games which throw following error:
"Cannot load extension DirectoryPacker.mfx".
This commit is contained in:
UzixLS
2018-11-03 16:43:33 +03:00
parent 824f38b281
commit 7a052106c3
4 changed files with 107 additions and 0 deletions

View File

@ -56,6 +56,8 @@ static const apilib_named_api shell32_named_apis[] =
DECL_API("SHGetSpecialFolderPathA", SHGetSpecialFolderPathA_new),
DECL_API("SHGetSpecialFolderPathW", SHGetSpecialFolderPathW_new),
DECL_API("SHParseDisplayName", SHParseDisplayName_new),
DECL_API("SHPathPrepareForWriteA", SHPathPrepareForWriteA_new),
DECL_API("SHPathPrepareForWriteW", SHPathPrepareForWriteW_new),
DECL_API("ShellAboutW", ShellAboutW_fwd),
DECL_API("ShellExecuteExW", ShellExecuteExW_fwd),
DECL_API("ShellExecuteW", ShellExecuteW_fwd),