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.

22 lines
607 B

  1. interface IWamRequest
  2. {
  3. GetAspMDAllData(
  4. pszMDPath,
  5. dwMDUserType,
  6. dwDefaultBufferSize,
  7. [force_allocate] pBuffer,
  8. pdwRequiredBufferSize,
  9. pdwNumDataEntries
  10. );
  11. GetAspMDData(
  12. pszMDPath,
  13. dwMDIdentifier,
  14. dwMDAttributes,
  15. dwMDUserType,
  16. dwMDDataType,
  17. dwMDDataLen,
  18. dwMDDataTag,
  19. [force_allocate] pbMDData,
  20. pdwRequiredBufferSize);
  21. }