Leaked source code of windows server 2003
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.

39 lines
962 B

  1. // BrwCap.idl : IDL source for BrwCap.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (BrwCap.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(E0049863-0766-11d1-8AAB-00C0F00910F9),
  10. dual,
  11. helpstring("IBrowserCap Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IBrowserCap : IDispatch
  15. {
  16. //Standard Server Side Component Methods
  17. [propget, id(DISPID_VALUE), helpstring("The Value method retrieves information from Browscap.ini for the requested property.")] HRESULT Value(BSTR, [out, retval] VARIANT *pVal);
  18. };
  19. [
  20. uuid(E0049865-0766-11d1-8AAB-00C0F00910F9),
  21. version(1.0),
  22. helpstring("MSWC Browser Capabilities Object Library")
  23. ]
  24. library BrowserType
  25. {
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(0ACE4881-8305-11CF-9427-444553540000),
  29. helpstring("BrowserType Class")
  30. ]
  31. coclass BrowserCap
  32. {
  33. [default] interface IBrowserCap;
  34. };
  35. };