⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 convdlle.h

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 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 + -