From: Amine Khaldi Date: Sat, 29 Sep 2012 13:27:13 +0000 (+0000) Subject: * Shell32 (a forked module) was jealous because of shlwapi getting synced. X-Git-Tag: backups/ros-csrss@57560~127 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=f915a711cecb452015966de2fa31f8cef0bd1929 * Shell32 (a forked module) was jealous because of shlwapi getting synced. svn path=/trunk/; revision=57430 --- diff --git a/reactos/dll/win32/shell32/undocshell.h b/reactos/dll/win32/shell32/undocshell.h index e5e486c3e25..40aa482430b 100644 --- a/reactos/dll/win32/shell32/undocshell.h +++ b/reactos/dll/win32/shell32/undocshell.h @@ -134,6 +134,30 @@ DWORD WINAPI SHNetConnectionDialog( LPCWSTR lpstrRemoteName, DWORD dwType); +/**************************************************************************** + * Memory Routines + */ + +/* The Platform SDK's shlobj.h header defines similar functions with a + * leading underscore. However those are unusable because of the leading + * underscore, because they have an incorrect calling convention, and + * because these functions are not exported by name anyway. + */ +HANDLE WINAPI SHAllocShared( + LPVOID pv, + ULONG cb, + DWORD pid); + +BOOL WINAPI SHFreeShared( + HANDLE hMem, + DWORD pid); + +LPVOID WINAPI SHLockShared( + HANDLE hMem, + DWORD pid); + +BOOL WINAPI SHUnlockShared(LPVOID pv); + /**************************************************************************** * Cabinet Window Messages */