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.

58 lines
1.1 KiB

  1. /*
  2. * headers.cxx
  3. *
  4. *
  5. * Copyright (c) 1998 Microsoft Corporation
  6. *
  7. * PURPOSE: Contains all the junk that couldn't fit anywhere else.
  8. *
  9. *
  10. * OWNER: vivekj
  11. */
  12. #include <headers.hxx>
  13. #ifdef _ATL_STATIC_REGISTRY
  14. #include <statreg.h>
  15. #include <statreg.cpp>
  16. #endif
  17. #ifdef VIEW_SUB
  18. // hack here
  19. extern "C"
  20. const CLSID CLSID_CCertConfig = {0x52F2ED5B,0x6C6C,0x11D1,{0xA1,0x22,0x00,0xC0,0x4F,0xC3,0x35,0x89}};
  21. extern "C"
  22. const CLSID IID_ICertConfig = {0x52F2ED5B,0x6C6C,0x11D1,{0xA1,0x22,0x00,0xC0,0x4F,0xC3,0x35,0x89}};
  23. #endif //VIEW_SUB
  24. /*
  25. * Purpose: Initializes the BaseMMC subsystem (Instance).
  26. *
  27. * Return value:
  28. * sc Error encountered
  29. */
  30. SC ScInitInstanceBaseMMC( void )
  31. {
  32. SC sc = S_OK;
  33. return sc;
  34. }
  35. /*
  36. * Purpose: Undoes what ScInitInstanceBaseMMC did.
  37. */
  38. void DeinitInstanceBaseMMC( void )
  39. {
  40. }
  41. /*
  42. * Purpose: Initializes the BaseMMC subsystem (Application).
  43. *
  44. * Return value:
  45. * sc Error encountered
  46. */
  47. SC ScInitApplicationBaseMMC()
  48. {
  49. SC sc = S_OK;
  50. return sc;
  51. }