mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
605 B
30 lines
605 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: ndscopy.hxx
|
|
//
|
|
// Contents: NDS Object Copy Routines
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 25-Apr-96 KrishnaG Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
HRESULT
|
|
ADsTypeCopy(
|
|
PADSVALUE lpADsSrcObject,
|
|
PADSVALUE lpADsDestObject
|
|
);
|
|
|
|
|
|
HRESULT
|
|
ADsTypeCopyConstruct(
|
|
LPADSVALUE pADsSrcObjects,
|
|
DWORD dwNumObjects,
|
|
LPADSVALUE * ppADsDestObjects
|
|
);
|
|
|