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
935 B

  1. // ScriptingUtils.idl : IDL source for ScriptingUtils.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ScriptingUtils.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(0530A3C4-50DA-4ACD-9E06-80E247D6BD61),
  10. dual,
  11. helpstring("IDateTimeObject Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IDateTimeObject : IDispatch
  15. {
  16. [id(1), helpstring("method GetDateAndTime")] HRESULT GetDateAndTime(BSTR bstrInDateTime, [out,retval] VARIANT *pVarDateTime);
  17. };
  18. [
  19. uuid(CA3E7B15-3A7A-4D64-82F7-2F74A28FCA32),
  20. version(1.0),
  21. helpstring("ScriptingUtils 1.0 Type Library")
  22. ]
  23. library SCRIPTINGUTILSLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(C0DDE6E0-8FA8-4E8D-8778-652852D4B9D3),
  29. helpstring("DateTimeObject Class")
  30. ]
  31. coclass DateTimeObject
  32. {
  33. [default] interface IDateTimeObject;
  34. };
  35. };