2009-05-29 06:33:56 +00:00
|
|
|
/* ZeroPAD - author: zerofrog(@gmail.com)
|
|
|
|
* Copyright (C) 2006-2007
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2010-07-08 16:34:39 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2009-05-29 06:33:56 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-29 06:33:56 +00:00
|
|
|
#ifndef __KEYBOARD_H__
|
|
|
|
#define __KEYBOARD_H__
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-29 06:33:56 +00:00
|
|
|
#include "zeropad.h"
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-29 06:33:56 +00:00
|
|
|
#ifdef __LINUX__
|
|
|
|
|
|
|
|
#include "Linux/linux.h"
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-29 06:33:56 +00:00
|
|
|
extern Display *GSdsp;
|
|
|
|
extern void PollForX11KeyboardInput(int pad);
|
|
|
|
extern bool PollX11Keyboard(char* &temp, u32 &pkey);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2009-05-29 08:39:32 +00:00
|
|
|
extern WNDPROC GSwndProc;
|
|
|
|
extern HWND GShwnd;
|
2009-05-29 06:33:56 +00:00
|
|
|
|
|
|
|
#endif
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-29 06:33:56 +00:00
|
|
|
extern char* KeysymToChar(int keysym);
|
|
|
|
extern void PollForKeyboardInput(int pad);
|
|
|
|
extern void SetAutoRepeat(bool autorep);
|
|
|
|
extern __forceinline int FindKey(int key, int pad);
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
#endif
|