mirror of https://github.com/tongzx/nt5src
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
29 lines
693 B
/*
|
|
* init.hxx
|
|
*
|
|
*
|
|
* Copyright (c) 1998 Microsoft Corporation
|
|
*
|
|
* PURPOSE: Defines a class to initialize/deinitialize the DLL
|
|
*
|
|
*
|
|
* OWNER: vivekj
|
|
*/
|
|
|
|
class CMMCFrame : public CBaseUIFrame
|
|
{
|
|
static BOOL s_fInitialized;
|
|
public:
|
|
CMMCFrame(void);
|
|
~CMMCFrame();
|
|
virtual SC ScInitApplication(void);
|
|
virtual SC ScInitInstance(void);
|
|
virtual void DeinitApplication(void);
|
|
virtual void DeinitInstance(void);
|
|
static void Initialize(HINSTANCE hinst, HINSTANCE hinstPrev, LPSTR, int n);
|
|
static void Initialize();
|
|
static void Uninitialize();
|
|
|
|
};
|
|
|
|
|