You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
504 B
26 lines
504 B
//
|
|
// funcprv.h : CFunctionProvider class declaration
|
|
//
|
|
// History:
|
|
// 15-NOV-1999 CSLim Created
|
|
|
|
#if !defined (__FUNCPRV_H__INCLUDED_)
|
|
#define __FUNCPRV_H__INCLUDED_
|
|
|
|
#include "private.h"
|
|
#include "fnprbase.h"
|
|
|
|
class CKorIMX;
|
|
|
|
class CFunctionProvider : public CFunctionProviderBase
|
|
{
|
|
public:
|
|
CFunctionProvider(CKorIMX *pime);
|
|
|
|
STDMETHODIMP GetFunction(REFGUID rguid, REFIID riid, IUnknown **ppunk);
|
|
|
|
CKorIMX *_pime;
|
|
};
|
|
|
|
#endif // __FUNCPRV_H__INCLUDED_
|
|
|