📄 convdlle.h
字号:
// --convdlle.h-----------------------------------------------------------------
//
// Defines an entry point to a conversion DLL.
//
// Copyright 1986 - 1998 Microsoft Corporation. All Rights Reserved.
//
// -----------------------------------------------------------------------------
#if !defined(_CONVDLLE_H)
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#define _CONVDLLE_H
//$$--CDllEntryPoint-----------------------------------------------------------
//
// DESCRIIPTION: class that represetns entry point info. Manages reference couting.
//
// ---------------------------------------------------------------------------
class CDllEntryPoint
{
protected:
LPWSTR m_pszDllName ;
LPSTR m_pszEntryPoint ;
LPWSTR m_pszGwPoint ;
LPWSTR m_pszOptions ;
WORD m_nRefs ; // reference count.
public:
CDllEntryPoint() ;
~CDllEntryPoint() ;
void AddRef() { DEBUGPRIVATE("CDLLEntryPoint::AddRef()\n"); m_nRefs++; }
void Release() ;
void EDKFree() ;
void EDKDump() ;
HRESULT HrEDKSet(LPCWSTR pszDllName, LPCWSTR pszEntryPoint, LPCWSTR pszGwPoint, LPCWSTR pszOptions) ;
// standard get member functions
LPWSTR const pszDllName() { return (m_pszDllName) ; }
LPSTR const pszEntryPoint() { return (m_pszEntryPoint) ; }
LPWSTR const pszGwPoint() { return (m_pszGwPoint); }
LPWSTR const pszOptions() { return (m_pszOptions); }
} ;
#pragma option pop /*P_O_Pop*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -