Files
firestorm/build-env/stlnative/CONVDLL.H
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

51 lines
1.3 KiB
C++

// --convdll.h------------------------------------------------------------------
//
// Defines the DLL access class
//
// Copyright 1986 - 1998 Microsoft Corporation. All Rights Reserved.
//
// -----------------------------------------------------------------------------
#if !defined(_CONVDLL_H)
#define _CONVDLL_H
//$$--CEDKConvDll---------------------------------------------------------------
//
// DESCRIPTION: class that manages loading DLLs.
//
// ---------------------------------------------------------------------------
class CEDKConvDll
{
public:
CEDKConvDll(
IN CDllEntryPoint * pep,
IN HANDLE hEventSource) ;
~CEDKConvDll() ;
HRESULT HrEDKLoad() ;
HRESULT HrEDKUnLoad() ;
HRESULT HrEDKQueryCapability(
IN PEDKCNVENV pEnv,
IN LPCWSTR pszContentClass,
IN PVOID pContent,
OUT BOOL &bAmCandidate) ;
HRESULT HrEDKConvert(
IN PEDKCNVENV pEnv,
IN LPCWSTR pszContentClass,
IN PVOID pContentIn,
OUT PVOID pContentOut,
OUT EDKCNVRES & crResult) ;
protected:
CDllEntryPoint * m_pepEntry ; // DLL and entry pont.
HINSTANCE m_hDll ; // DLL handle.
PCONVDLLVECT m_pDllVector ; // Vector.
HANDLE m_hEventSource ;
} ;
#endif