windows-nt/Source/XPSP1/NT/enduser/netmeeting/h/dllutil.h

22 lines
547 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// File: dllutil.h
#ifndef _DLLUTIL_H_
#define _DLLUTIL_H_
#include <shlwapi.h> // for DLLVERSIONINFO
typedef struct tagApiFcn // function pointer to API mapping
{
PVOID * ppfn;
LPSTR szApiName;
} APIFCN;
typedef APIFCN * PAPIFCN;
BOOL FCheckDllVersionVersion(LPCTSTR pszDll, DWORD dwMajor, DWORD dwMinor);
HRESULT HrGetDllVersion(LPCTSTR lpszDllName, DLLVERSIONINFO * pDvi);
HRESULT HrInitLpfn(APIFCN *pProcList, int cProcs, HINSTANCE* phLib, LPCTSTR pszDllName);
HINSTANCE NmLoadLibrary(LPCTSTR pszModule);
#endif /* _DLLUTIL_H_ */