mirror of https://github.com/tongzx/nt5src
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.
30 lines
525 B
30 lines
525 B
#ifndef __CDFTEST_H__
|
|
#define __CDFTEST_H__
|
|
|
|
|
|
//framework implementation class
|
|
class CDirectInputConfigUITest : public IDirectInputConfigUITest
|
|
{
|
|
|
|
public:
|
|
|
|
//IUnknown fns
|
|
STDMETHOD (QueryInterface) (REFIID iid, LPVOID *ppv);
|
|
STDMETHOD_(ULONG, AddRef) ();
|
|
STDMETHOD_(ULONG, Release) ();
|
|
|
|
//own fns
|
|
STDMETHOD (TestConfigUI) (LPTESTCONFIGUIPARAMS params);
|
|
|
|
//construction / destruction
|
|
CDirectInputConfigUITest();
|
|
~CDirectInputConfigUITest();
|
|
|
|
protected:
|
|
|
|
//reference count
|
|
LONG m_cRef;
|
|
};
|
|
|
|
|
|
#endif //__CDFTEST_H__
|