2009-05-23 06:11:48 +00:00
|
|
|
/* PadNull
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2004-2010 PCSX2 Dev Team
|
2009-05-23 06:11:48 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-05-23 06:11:48 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* PCSX2 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.
|
2009-05-23 06:11:48 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-05-23 06:11:48 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-23 06:11:48 +00:00
|
|
|
#ifndef __PADLINUX_H__
|
|
|
|
#define __PADLINUX_H__
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-23 06:11:48 +00:00
|
|
|
#include "../Pad.h"
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-05-23 06:11:48 +00:00
|
|
|
void _PadUpdate(int pad);
|
|
|
|
s32 _PADOpen(void *pDsp);
|
|
|
|
void _PADClose();
|
2010-04-25 00:31:27 +00:00
|
|
|
|
|
|
|
#endif
|