2014-02-20 11:12:53 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
// Created by [Dan Andersson] [2014]
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef INPUT_WIN32_APPLICATION_KEBOARD_H
|
|
|
|
#define INPUT_WIN32_APPLICATION_KEBOARD_H
|
|
|
|
|
2014-02-20 13:27:21 +01:00
|
|
|
#define NOMINMAX
|
|
|
|
#include <Windows.h>
|
2014-02-20 11:12:53 +01:00
|
|
|
#include "..\ApplicationKeyboard.h"
|
|
|
|
|
|
|
|
namespace Input
|
|
|
|
{
|
2014-02-20 13:27:21 +01:00
|
|
|
class Win32ApplicationKeyboard : public ApplicationKeyboard
|
2014-02-20 11:12:53 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Win32ApplicationKeyboard();
|
|
|
|
~Win32ApplicationKeyboard();
|
|
|
|
|
2014-02-20 14:39:12 +01:00
|
|
|
void CaptureText( UINT msg, WPARAM param );
|
2014-02-20 11:12:53 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !INPUT_WIN32_APPLICATION_KEBOARD_H
|