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.

72 lines
1.1 KiB

  1. LPBYTE
  2. AdsTypeCopyDNString(
  3. PADSVALUE lpAdsSrcValue,
  4. PADSVALUE lpAdsDestValue,
  5. LPBYTE lpBuffer
  6. );
  7. LPBYTE
  8. AdsTypeCopyCaseExactString(
  9. PADSVALUE lpAdsSrcValue,
  10. PADSVALUE lpAdsDestValue,
  11. LPBYTE lpBuffer
  12. );
  13. LPBYTE
  14. AdsTypeCopyCaseIgnoreString(
  15. PADSVALUE lpAdsSrcValue,
  16. PADSVALUE lpAdsDestValue,
  17. LPBYTE lpBuffer
  18. );
  19. LPBYTE
  20. AdsTypeCopyPrintableString(
  21. PADSVALUE lpAdsSrcValue,
  22. PADSVALUE lpAdsDestValue,
  23. LPBYTE lpBuffer
  24. );
  25. LPBYTE
  26. AdsTypeCopyNumericString(
  27. PADSVALUE lpAdsSrcValue,
  28. PADSVALUE lpAdsDestValue,
  29. LPBYTE lpBuffer
  30. );
  31. LPBYTE
  32. AdsTypeCopyBoolean(
  33. PADSVALUE lpAdsSrcValue,
  34. PADSVALUE lpAdsDestValue,
  35. LPBYTE lpBuffer
  36. );
  37. LPBYTE
  38. AdsTypeCopyInteger(
  39. PADSVALUE lpAdsSrcValue,
  40. PADSVALUE lpAdsDestValue,
  41. LPBYTE lpBuffer
  42. );
  43. LPBYTE
  44. AdsTypeCopyOctetString(
  45. PADSVALUE lpAdsSrcValue,
  46. PADSVALUE lpAdsDestValue,
  47. LPBYTE lpBuffer
  48. );
  49. LPBYTE
  50. AdsTypeCopyTime(
  51. PADSVALUE lpAdsSrcValue,
  52. PADSVALUE lpAdsDestValue,
  53. LPBYTE lpBuffer
  54. );
  55. LPBYTE
  56. AdsTypeCopy(
  57. PADSVALUE lpAdsSrcValue,
  58. PADSVALUE lpAdsDestValue,
  59. LPBYTE lpBuffer
  60. );