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.

56 lines
5.0 KiB

  1. ��#pragma namespace("\\\\.\\root\\directory\\LDAP")
  2. instance of __namespace{ name="ms_409";};
  3. #pragma namespace("\\\\.\\root\\directory\\LDAP\\ms_409")
  4. [Description("This is the class used to model the AD Syntax Octet String") : Amended,AMENDMENT, LOCALE(0x409)]
  5. class Uint8Array
  6. {
  7. };
  8. [Description("This is the class used to model the AD Syntax DN_With_String") : Amended,AMENDMENT, LOCALE(0x409)]
  9. class DN_With_String
  10. {
  11. };
  12. [Description("This is the class used to model the AD Syntax DN_With_Binary") : Amended,AMENDMENT, LOCALE(0x409)]
  13. class DN_With_Binary
  14. {
  15. };
  16. [Description("This is the class used to model the LDAP RootDSE object") : Amended,AMENDMENT, LOCALE(0x409)]
  17. class RootDSE
  18. {
  19. };
  20. [Description("This acts as the base class of all the classes provides by the DS Provider") : Amended,AMENDMENT, LOCALE(0x409)]
  21. class DS_LDAP_Root_Class
  22. {
  23. [KEY,Description("This is the key for any DS Object") : Amended] string ADSIPath;
  24. };
  25. [Description("This class models the possible superiors of a DS class") : Amended,AMENDMENT, LOCALE(0x409)]
  26. class DS_LDAP_Class_Containment
  27. {
  28. [key,Description("The child DS Class") : Amended] object Ref ChildClass;
  29. [key,Description("The parent DS Class") : Amended] object Ref ParentClass;
  30. };
  31. [Description("This class models the parent-child container relationship of instances in the DS") : Amended,AMENDMENT, LOCALE(0x409)]
  32. class DS_LDAP_Instance_Containment
  33. {
  34. [KEY,Description("The child DS instance") : Amended] DS_LDAP_Root_Class Ref ChildInstance;
  35. [KEY,Description("The child DS instance") : Amended] DS_LDAP_Root_Class Ref ParentInstance;
  36. };
  37. [Description("A class to encapsulate a DN") : Amended,AMENDMENT, LOCALE(0x409)]
  38. class DN_Class
  39. {
  40. [KEY,Description("The ADSI Path to the object in the DS") : Amended] string DN;
  41. };
  42. [Description(" Use an instance of this class to allow the client to give a hint to the \t\tDS Instance Provider to scope enumerations and queries to a particular \t\tsub-tree or a naming context. \t\tThe client should create instances of this class if it wants the \t\tDS Provider to do enumerations and queries of a specific DS class \t\tfrom a specific DS Object as the root") : Amended,AMENDMENT, LOCALE(0x409)]
  43. class DSClass_To_DNInstance
  44. {
  45. [KEY,Description("The Name of the class for which scoping is to be used") : Amended] string DSClass;
  46. [KEY,Description("The reference to an instance of DN_Class that gives the ADSI path of the object below which the search should be scoped") : Amended] DN_Class Ref RootDNForSearchAndQuery;
  47. };