You cannot 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
882 B
C++
30 lines
882 B
C++
// TriggerWithInput.h: interface for the CTriggerWithInput class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_TRIGGERWITHINPUT_H__A47DF009_1106_401F_BD61_7446840A733E__INCLUDED_)
|
|
#define AFX_TRIGGERWITHINPUT_H__A47DF009_1106_401F_BD61_7446840A733E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "Utility.h"
|
|
#include "Input.h"
|
|
|
|
#ifdef BUILD_MCCTRDLL
|
|
#define MCCTRDLLCLASS __declspec(dllexport)
|
|
#else
|
|
#define MCCTRDLLCLASS __declspec(dllimport)
|
|
#endif
|
|
|
|
class MCCTRDLLCLASS CTriggerWithInput : public CTrigger
|
|
{
|
|
public:
|
|
void InsertInput(CInput* pInput, BOOL bState, DWORD dwDebounce, DWORD dwTimeout);
|
|
CTriggerWithInput();
|
|
virtual ~CTriggerWithInput();
|
|
};
|
|
|
|
#endif // !defined(AFX_TRIGGERWITHINPUT_H__A47DF009_1106_401F_BD61_7446840A733E__INCLUDED_)
|