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.

47 lines
2.5 KiB

  1. // NxtLnk.idl : IDL source for NxtLnk.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (NxtLnk.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(E0049866-0766-11d1-8AAB-00C0F00910F9),
  10. dual,
  11. helpstring("INextLink Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface INextLink : IDispatch
  15. {
  16. //Standard Server Side Component Methods
  17. [propget, id(1), helpstring("The GetNextURL method retrieves the URL of the next item in the Content Linking List file.")] HRESULT GetNextURL(BSTR, [out, retval] BSTR *pVal);
  18. [propget, id(2), helpstring("The GetNextDescription method retrieves the text description of the next item in the Content Linking List file.")] HRESULT GetNextDescription(BSTR bstrLinkFile, [out, retval] BSTR *pVal);
  19. [propget, id(3), helpstring("The GetPreviousURL method returns the URL of the previous item in the Content Linking List file.")] HRESULT GetPreviousURL(BSTR bstrLinkFile, [out, retval] BSTR *pVal);
  20. [propget, id(4), helpstring("The GetPreviousDescription method retrieves a text description of the previous item in the Content Linking List file.")] HRESULT GetPreviousDescription(BSTR bstrLinkFile, [out, retval] BSTR *pVal);
  21. [propget, id(5), helpstring("The GetNthURL method returns the URL of the Nth item in the Content Linking List file.")] HRESULT GetNthURL(BSTR bstrLinkFile, int nIndex, [out, retval] BSTR *pVal);
  22. [propget, id(6), helpstring("The GetNthDescription method retrieves a text description of the Nth item in the Content Linking List file.")] HRESULT GetNthDescription(BSTR bstrLinkFile, int nIndex, [out, retval] BSTR *pVal);
  23. [propget, id(7), helpstring("The GetListCount method retrieves the total number of Web pages listed in the Content Linking List file.")] HRESULT GetListCount(BSTR bstrLinkFile, [out, retval] int *pVal);
  24. [propget, id(8), helpstring("The GetListIndex method retrieves the index number of the current item in the Content Linking List file.")] HRESULT GetListIndex(BSTR bstrLinkFile, [out, retval] int *pVal);
  25. [propget, id(9), helpstring("The About method retrieves build information.")] HRESULT About([out, retval] BSTR *pVal);
  26. };
  27. [
  28. uuid(E0049867-0766-11d1-8AAB-00C0F00910F9),
  29. version(1.0),
  30. helpstring("MSWC Content Linking Object Library")
  31. ]
  32. library NextLink
  33. {
  34. importlib("stdole2.tlb");
  35. [
  36. uuid(4D9E4505-6DE1-11CF-87A7-444553540000),
  37. helpstring("NextLink Class")
  38. ]
  39. coclass NextLink
  40. {
  41. [default] interface INextLink;
  42. };
  43. };