Leaked source code of windows server 2003
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

  1. //
  2. // funcprv.h : CFunctionProvider class declaration
  3. //
  4. // History:
  5. // 15-NOV-1999 CSLim Created
  6. #if !defined (__FUNCPRV_H__INCLUDED_)
  7. #define __FUNCPRV_H__INCLUDED_
  8. #include "private.h"
  9. #include "fnprbase.h"
  10. class CKorIMX;
  11. class CFunctionProvider : public CFunctionProviderBase
  12. {
  13. public:
  14. CFunctionProvider(CKorIMX *pime);
  15. STDMETHODIMP GetFunction(REFGUID rguid, REFIID riid, IUnknown **ppunk);
  16. CKorIMX *_pime;
  17. };
  18. #endif // __FUNCPRV_H__INCLUDED_