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.

49 lines
936 B

  1. // MyComput.idl : IDL source for MyComput.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (MyComput.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(58221C68-EA27-11CF-ADCF-00AA00A80033),
  10. helpstring("IMyComputer Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IMyComputer : IUnknown
  14. {
  15. };
  16. [
  17. uuid(3BFC964D-7A55-11D0-B928-00C04FD8D5B0),
  18. version(1.0),
  19. helpstring("MyComput 1.0 Type Library")
  20. ]
  21. library MYCOMPUTLib
  22. {
  23. importlib("stdole32.tlb");
  24. /////////////////////////////////////////////
  25. [
  26. uuid(58221C67-EA27-11CF-ADCF-00AA00A80033),
  27. helpstring("MYCOMPUT Class")
  28. ]
  29. coclass MyComputer
  30. {
  31. [default] interface IMyComputer;
  32. };
  33. /////////////////////////////////////////////
  34. [
  35. uuid(11d5c91f-0a98-11d1-bb10-00c04fc9a3a3),
  36. helpstring("MYCOMPUT About")
  37. ]
  38. coclass ComputerManagementAbout
  39. {
  40. [default] interface IMyComputer;
  41. };
  42. };