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.
67 lines
744 B
67 lines
744 B
#pragma once
|
|
|
|
#include <Softpub.h>
|
|
|
|
|
|
|
|
|
|
//
|
|
// Holds information on the ALG module loaded
|
|
//
|
|
class CAlgModule
|
|
{
|
|
|
|
public:
|
|
|
|
CAlgModule(
|
|
LPCTSTR pszProgID,
|
|
LPCTSTR pszFriendlyName
|
|
)
|
|
{
|
|
lstrcpy(m_szID, pszProgID);
|
|
lstrcpy(m_szFriendlyName, pszFriendlyName);
|
|
|
|
m_pInterface=NULL;
|
|
};
|
|
|
|
|
|
~CAlgModule()
|
|
{
|
|
Stop();
|
|
}
|
|
|
|
|
|
//
|
|
// Methods
|
|
//
|
|
private:
|
|
|
|
HRESULT
|
|
ValidateDLL(
|
|
LPCTSTR pszPathAndFileNameOfDLL
|
|
);
|
|
|
|
public:
|
|
|
|
HRESULT
|
|
Start();
|
|
|
|
|
|
HRESULT
|
|
Stop();
|
|
|
|
//
|
|
// Properties
|
|
//
|
|
public:
|
|
|
|
TCHAR m_szID[MAX_PATH];
|
|
TCHAR m_szFriendlyName[MAX_PATH];
|
|
IApplicationGateway* m_pInterface;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|