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.

33 lines
738 B

  1. /**************************************************************************\
  2. * Module Name: funcprv.cpp
  3. *
  4. * Copyright (c) 1985 - 2000, Microsoft Corporation
  5. *
  6. * Declaration of function provider.
  7. *
  8. * History:
  9. * 11-April-2000 weibz Created
  10. \**************************************************************************/
  11. #ifndef FUNCPRV_H
  12. #define FUNCPRV_H
  13. #include "private.h"
  14. #include "fnprbase.h"
  15. class CSoftkbdIMX;
  16. class CFunctionProvider : public CFunctionProviderBase
  17. {
  18. public:
  19. CFunctionProvider(CSoftkbdIMX *pimx);
  20. //
  21. // ITfFunctionProvider
  22. //
  23. STDMETHODIMP GetFunction(REFGUID rguid, REFIID riid, IUnknown **ppunk);
  24. CSoftkbdIMX *_pimx;
  25. };
  26. #endif // FUNCPRV_H