Source code of Windows XP (NT5)
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.

38 lines
684 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: ntcopy.hxx
  7. //
  8. // Contents: NT Object Copy Routines
  9. //
  10. // Functions:
  11. //
  12. // History: 17-June-1996 RamV Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. HRESULT
  16. NtTypeCopy(
  17. PNTOBJECT lpNtSrcObject,
  18. PNTOBJECT lpNtDestObject
  19. );
  20. HRESULT
  21. NtTypeCopyConstruct(
  22. LPNTOBJECT pNtSrcObjects,
  23. DWORD dwNumObjects,
  24. LPNTOBJECT * ppNtDestObjects
  25. );
  26. HRESULT
  27. CopyNulledString(
  28. LPTSTR pszSrcString,
  29. LPTSTR *ppszDestString
  30. );