2009-02-06 19:52:59 +00:00
|
|
|
/* ZeroSPU2
|
2010-01-16 16:08:17 +00:00
|
|
|
* Copyright (C) 2006-2010 zerofrog
|
2009-02-06 19:52:59 +00:00
|
|
|
*
|
|
|
|
* 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-04 22:49:00 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2009-02-06 19:52:59 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-02-06 19:52:59 +00:00
|
|
|
// Modified by arcum42@gmail.com
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-02-06 19:52:59 +00:00
|
|
|
#ifndef __LINUX_H__
|
|
|
|
#define __LINUX_H__
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-02-06 19:52:59 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/soundcard.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <zerospu2.h>
|
2010-01-16 16:08:17 +00:00
|
|
|
#include "Targets/SoundTargets.h"
|
2009-02-06 19:52:59 +00:00
|
|
|
|
2010-01-16 16:08:17 +00:00
|
|
|
#endif // __LINUX_H__
|