Added stub for DllInstall().
This commit is contained in:
parent
2fab2ef11f
commit
c7071c03d6
|
@ -392,3 +392,4 @@ init Shell32LibMain
|
||||||
|
|
||||||
1224 stdcall SHFileOperationA (ptr) SHFileOperationA # exported by name
|
1224 stdcall SHFileOperationA (ptr) SHFileOperationA # exported by name
|
||||||
1225 stdcall SHFileOperationW (ptr) SHFileOperationW # exported by name
|
1225 stdcall SHFileOperationW (ptr) SHFileOperationW # exported by name
|
||||||
|
1226 stdcall DllInstall (long wstr) DllInstall # win98:202
|
||||||
|
|
|
@ -879,3 +879,19 @@ BOOL WINAPI Shell32LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* DllInstall [SHELL32.202]
|
||||||
|
*
|
||||||
|
* PARAMETERS
|
||||||
|
*
|
||||||
|
* BOOL bInstall - TRUE for install, FALSE for uninstall
|
||||||
|
* LPCWSTR pszCmdLine - command line (unused by shell32?)
|
||||||
|
*/
|
||||||
|
|
||||||
|
HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
|
||||||
|
{
|
||||||
|
FIXME_(shell)("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
|
||||||
|
|
||||||
|
return S_OK; /* indicate success */
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue