37 lines
632 B
C++
37 lines
632 B
C++
// ClientLic.h : main header file for the ClientLic DLL
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error "include 'stdafx.h' before including this file for PCH"
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
// CClientLicApp
|
|
// See ClientLic.cpp for the implementation of this class
|
|
//
|
|
|
|
class CClientLicApp : public CWinApp
|
|
{
|
|
public:
|
|
CClientLicApp();
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
HINSTANCE hins_ClientLic;
|
|
HMODULE hmod_ClientLic;
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
extern CClientLicApp theApp_ClientLic;
|
|
|
|
class ClientLic_dll
|
|
{
|
|
public:
|
|
HINSTANCE m_hInstOld;
|
|
ClientLic_dll(void);
|
|
virtual ~ClientLic_dll(void);
|
|
}; |