/* USBqemu * Copyright (C) 2002-2011 PCSX2 Team * * 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 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #pragma once #ifndef __USB_H__ #define __USB_H__ #include #define USBdefs #include "PS2Edefs.h" #ifdef __WIN32__ # include # include #else # include # define __inline inline #endif #include #include #include #include #define USB_LOG __Log typedef struct { bool Log; } Config; extern Config conf; #define PSXCLK 36864000 /* 36.864 Mhz */ void USBirq(int); void SaveConfig(); void LoadConfig(); extern FILE *usbLog; void __Log(char *fmt, ...); extern void SysMessage(const char *fmt, ...); extern void SysMessage(const wchar_t *fmt, ...); extern HWND gsWindowHandle; #endif