mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 16:26:02 +00:00
* Shell32 (a forked module) was jealous because of shlwapi getting synced.
svn path=/trunk/; revision=57430
This commit is contained in:
parent
2cfa9a0af4
commit
f915a711ce
1 changed files with 24 additions and 0 deletions
|
@ -134,6 +134,30 @@ DWORD WINAPI SHNetConnectionDialog(
|
||||||
LPCWSTR lpstrRemoteName,
|
LPCWSTR lpstrRemoteName,
|
||||||
DWORD dwType);
|
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
|
* Cabinet Window Messages
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue