convclss.h
来自「c语言编程软件vc6.0中文绿色版_vc6.0官方下载」· C头文件 代码 · 共 40 行
H
40 行
// --convclss.h-----------------------------------------------------------------
//
// Defines CClassName - a C++ class that keeps track of conversion classes
//
// Copyright 1986 - 1998 Microsoft Corporation. All Rights Reserved.
//
// -----------------------------------------------------------------------------
#if !defined(_CONVCLSS_H)
#define _CONVCLSS_H
//$$--CClassName---------------------------------------------------------------
//
// DESCRIPTION: This class manages entry point name information.
//
// ---------------------------------------------------------------------------
class CClassName
{
protected:
LPWSTR m_pszClassName ; // name of the class supported.
CDllEntryPoint * m_pEntryPoint ; // entry point details.
public:
CClassName * m_pcnNext ; // next pointer.
CClassName();
~CClassName();
void EDKDump() ;
HRESULT HrEDKSet(LPCWSTR pszClassName, CDllEntryPoint * pEntryPoint) ;
LPWSTR const pszClassName() { return m_pszClassName; }
int const cNameLength() { ASSERTERROR(m_pszClassName != NULL, "NULL m_pszClassName");
return lstrlenW(m_pszClassName); }
CDllEntryPoint * pEntryPoint()
{ return (m_pEntryPoint); }
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?