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.

42 lines
1.2 KiB

  1. // brp_sysinfo.idl : IDL source for brp_sysinfo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (brp_sysinfo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(30DAD827-DCA7-4E7E-A41E-EA5A8115BE4A),
  10. dual,
  11. helpstring("IBugRepSysInfo Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IBugRepSysInfo : IDispatch
  15. {
  16. [id(1), helpstring("method GetLanguageString")] HRESULT GetLanguageID([out,retval] INT* pintLanguage);
  17. [id(2), helpstring("method GetOSVersionString")] HRESULT GetOSVersionString([out,retval] BSTR* pbstrOSVersion);
  18. [id(3), helpstring("method GetUserDefaultLCID")] HRESULT GetUserDefaultLCID([out,retval] DWORD *pdwLCID);
  19. [id(4), helpstring("method GetActiveCP")] HRESULT GetActiveCP([out,retval] UINT *pnACP);
  20. };
  21. [
  22. uuid(CA9F6CB1-47F1-4874-90CB-C674E9A86495),
  23. version(1.0),
  24. helpstring("brp_sysinfo 1.0 Type Library")
  25. ]
  26. library BRP_SYSINFOLib
  27. {
  28. importlib("stdole32.tlb");
  29. importlib("stdole2.tlb");
  30. [
  31. uuid(F25BC7B7-C60D-4FB9-AAE4-3CA0F6C7038A),
  32. helpstring("BugRepSysInfo Class")
  33. ]
  34. coclass BugRepSysInfo
  35. {
  36. [default] interface IBugRepSysInfo;
  37. };
  38. };