|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
LocalHandle
The LocalHandle function retrieves the handle associated with the specified pointer to a
local memory object.
HLOCAL LocalHandle(
LPCVOID pMem
| // address of local memory object
| );
|
|
Parameters
pMem
Points to the first byte of the local memory object. This pointer is returned
by the LocalLock function.
Return Values
If the function succeeds, the return value is the handle of the specified
local memory object.
If the function fails, the return value is NULL. To get extended error
information, call GetLastError.
Remarks
When the LocalAlloc function allocates a local memory object with the LMEM_MOVEABLE flag, it
returns the handle of the object. The LocalLock function converts this handle into a pointer to the object's memory block,
and LocalHandle converts the pointer back into a handle.
See Also
LocalAlloc, LocalLock
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|