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.
|
|
#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__
|