L_CopyMarkers
#include "l_bitmap.h"
L_INT EXT_FUNCTION L_CopyMarkers(phMarkersDst, hMarkersSrc)
HANDLE L_FAR * phMarkersDst; |
/* destination markers handle */ |
HANDLE hMarkersSrc; |
/* source markers handle */ |
Copies the specified collection of metadata markers to a new handle.
Parameter |
Description |
phMarkersDst |
Pointer to a variable to be updated with a handle to a copy of the specified markers. |
hMarkersSrc |
Handle to the collection of metadata markers to copy. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
The new handle will be copied to *phMarkersDst.
If hMarkersSrc is NULL or if the function fails, phMarkersDst will be NULL.
Required DLLs and Libraries
LTFIL For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Platforms
Windows 95 / 98 / Me, Windows 2000 / XP.
See Also
Functions: |
L_LoadMarkers, L_CreateMarkers, L_FreeMarkers, L_InsertMarker, L_EnumMarkers, L_GetMarkerCount, L_GetMarker |
Topics: |
|
|
Example
void CopyMarkers (HANDLE hMarkersCopy, HANDLE hMarkerSrc)
{
// Copy markers collection into the desitation handle
L_CopyMarkers(&hMarkersCopy, hMarkerSrc);
}