DuplicateHandle

This function duplicates an object handle. The duplicate handle refers to the same object as the original handle. Therefore, any changes to the object are reflected through both handles.

BOOL DuplicateHandle(
  HANDLE hSourceProcessHandle,
  HANDLE hSourceHandle,
  HANDLE hTargetProcessHandle,
  LPHANDLE lpTargetHandle,
  DWORD dwDesiredAccess,
  BOOL bInheritHandle,
  DWORD dwOptions
);

Parameters

  • hSourceProcessHandle
    [in] Handle to the process with the handle to duplicate.

  • hSourceHandle
    [in] Handle to duplicate. This is an open object handle that is valid in the context of the source process. For a list of objects whose handles can be duplicated, see the following Remarks section.

  • hTargetProcessHandle
    [in] Handle to the process that is to receive the duplicated handle. The handle must have PROCESS_DUP_HANDLE access.

  • lpTargetHandle
    [out] Pointer to a variable that receives the value of the duplicate handle. This handle value is valid in the context of the target process. Cannot be NULL.

  • dwDesiredAccess
    [in] Specifies the access requested for the new handle. This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag.

    Windows CE requires that DUPLICATE_SAME_ACCESS is always set.

  • bInheritHandle
    [in] Indicates whether the handle is inheritable. Must be set to FALSE.

    If FALSE, the new handle cannot be inherited.

  • dwOptions
    [in] Specifies optional actions. This parameter can be zero, or any combination of the values in the following table.

    Value Description
    DUPLICATE_CLOSE_SOURCE Closes the source handle. This occurs regardless of any error status returned.
    DUPLICATE_SAME_ACCESS Ignores the dwDesiredAccess parameter. The duplicate handle has the same access as the source handle. This flag must be specified for Windows CE.

Return Values

If the function succeeds, the return value is non-zero.

If the function fails, the return value is zero. To get extended error information, call GetLastError.

Remarks

Either the source process or the target process can call DuplicateHandle. DuplicateHandle can also be invoked where the source and target process are the same.

The duplicating process uses the GetCurrentProcess function to get a handle of itself. To get the other process handle, it may be necessary to use some form of interprocess communication, for example, shared memory, to communicate the process identifier to the duplicating process. This identifier is then used in the OpenProcess function to open a handle.

If the process that calls DuplicateHandle is not the target process, the duplicating process must use interprocess communication to pass the value of the duplicate handle to the target process.

DuplicateHandle can only duplicate handles to the types of objects in the following table.

Handle Description
Event Returned by CreateEvent or OpenEvent.
Mutex Returned by CreateMutex.
Semaphore Returned by CreateSemaphore.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Windows.h.
Link Library: Coredll.lib.

See Also

OpenProcess | CreateEvent | OpenEvent | CreateFileMapping | CreateMutex | CreateProcess | GetCurrentProcess | CreateSemaphore | CreateThread | GetCurrentThread | CloseHandle

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.