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.

45 lines
1.4 KiB

  1. // CerClient.idl : IDL source for CerClient.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (CerClient.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(54F6D251-AD78-4B78-A6E7-863E362A1F0C),
  11. dual,
  12. helpstring("ICerUpload Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface ICerUpload : IDispatch
  16. {
  17. [id(1), helpstring("method Upload")] HRESULT Upload([in]BSTR *Path, [in]BSTR *TransID, [in]BSTR *FileName, [in]BSTR *IncidentID, [in]BSTR *RedirParam, [out,retval]VARIANT *RetCode);
  18. [id(2), helpstring("method Browse")] HRESULT Browse([in]BSTR *WindowTitle, [out,retval]VARIANT *Path);
  19. [id(3), helpstring("method GetFileCount")] HRESULT GetFileCount([in]BSTR *bstrSharePath, [in]BSTR *bstrTransactID, [in]VARIANT *iMaxCount, [out,retval]VARIANT *RetVal);
  20. [id(4), helpstring("method GetFileNames")] HRESULT GetFileNames([in]BSTR *Path, [in]BSTR *TransID, [in]VARIANT *Count, [out,retval]VARIANT *FileList);
  21. };
  22. [
  23. uuid(012B3B9C-FB7D-4793-A624-8C5CBFCE6B8D),
  24. version(1.0),
  25. helpstring("CerClient 1.0 Type Library")
  26. ]
  27. library CERCLIENTLib
  28. {
  29. importlib("stdole32.tlb");
  30. importlib("stdole2.tlb");
  31. [
  32. uuid(C3397F18-DAC9-42C3-BC3B-7853A84A8CB9),
  33. helpstring("CerUpload Class")
  34. ]
  35. coclass CerUpload
  36. {
  37. [default] interface ICerUpload;
  38. };
  39. };