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.

29 lines
693 B

  1. /*
  2. * init.hxx
  3. *
  4. *
  5. * Copyright (c) 1998 Microsoft Corporation
  6. *
  7. * PURPOSE: Defines a class to initialize/deinitialize the DLL
  8. *
  9. *
  10. * OWNER: vivekj
  11. */
  12. class CMMCFrame : public CBaseUIFrame
  13. {
  14. static BOOL s_fInitialized;
  15. public:
  16. CMMCFrame(void);
  17. ~CMMCFrame();
  18. virtual SC ScInitApplication(void);
  19. virtual SC ScInitInstance(void);
  20. virtual void DeinitApplication(void);
  21. virtual void DeinitInstance(void);
  22. static void Initialize(HINSTANCE hinst, HINSTANCE hinstPrev, LPSTR, int n);
  23. static void Initialize();
  24. static void Uninitialize();
  25. };