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.

52 lines
927 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: ndsmrshl.hxx
  7. //
  8. // Contents: Base NDS Marshalling Code
  9. //
  10. // Functions:
  11. //
  12. // History: 25-Apr-96 KrishnaG Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. HRESULT
  16. NdsTypeClear(
  17. PNDSOBJECT pNdsObject
  18. );
  19. void
  20. NdsTypeFreeNdsObjects(
  21. PNDSOBJECT pNdsObject,
  22. DWORD dwNumValues
  23. );
  24. HRESULT
  25. CopyNdsValueToNdsObject(
  26. nptr attrVal,
  27. nuint32 luAttrValSize,
  28. nuint32 luSyntax,
  29. PNDSOBJECT pNdsObject
  30. );
  31. HRESULT
  32. CopyNdsObjectToNdsValue(
  33. PNDSOBJECT pNdsObject,
  34. nptr *ppAttrVal,
  35. pnuint32 pluAttrValSize,
  36. pnuint32 pluSyntax
  37. );
  38. HRESULT
  39. FreeNdsValues(
  40. nuint32 luSyntax,
  41. void *attrVal,
  42. nuint32 luAttrValSize
  43. );