Source code of Windows XP (NT5)
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.

29 lines
525 B

  1. #ifndef __CDFTEST_H__
  2. #define __CDFTEST_H__
  3. //framework implementation class
  4. class CDirectInputConfigUITest : public IDirectInputConfigUITest
  5. {
  6. public:
  7. //IUnknown fns
  8. STDMETHOD (QueryInterface) (REFIID iid, LPVOID *ppv);
  9. STDMETHOD_(ULONG, AddRef) ();
  10. STDMETHOD_(ULONG, Release) ();
  11. //own fns
  12. STDMETHOD (TestConfigUI) (LPTESTCONFIGUIPARAMS params);
  13. //construction / destruction
  14. CDirectInputConfigUITest();
  15. ~CDirectInputConfigUITest();
  16. protected:
  17. //reference count
  18. LONG m_cRef;
  19. };
  20. #endif //__CDFTEST_H__