mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-04 14:37:46 -04:00
move common files to root
This commit is contained in:
parent
f506842df2
commit
a86e9a3e58
25 changed files with 15 additions and 15 deletions
|
@ -6,7 +6,7 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "../common/input.h"
|
#include "../input.h"
|
||||||
#include "in_gp2x.h"
|
#include "in_gp2x.h"
|
||||||
|
|
||||||
#define IN_GP2X_PREFIX "gp2x:"
|
#define IN_GP2X_PREFIX "gp2x:"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "soc.h"
|
#include "soc.h"
|
||||||
#include "../common/emu.h"
|
#include "../emu.h"
|
||||||
|
|
||||||
extern void *gp2x_screens[4];
|
extern void *gp2x_screens[4];
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
#include "soc.h"
|
#include "soc.h"
|
||||||
#include "soc_mmsp2.h"
|
#include "soc_mmsp2.h"
|
||||||
#include "plat_gp2x.h"
|
#include "plat_gp2x.h"
|
||||||
#include "../common/emu.h"
|
#include "../emu.h"
|
||||||
#include "../common/plat.h"
|
#include "../plat.h"
|
||||||
#include "../common/arm_utils.h"
|
#include "../arm_utils.h"
|
||||||
#include "940ctl.h"
|
#include "940ctl.h"
|
||||||
|
|
||||||
volatile unsigned short *gp2x_memregs;
|
volatile unsigned short *gp2x_memregs;
|
||||||
|
|
|
@ -20,9 +20,9 @@
|
||||||
|
|
||||||
#include "soc.h"
|
#include "soc.h"
|
||||||
#include "plat_gp2x.h"
|
#include "plat_gp2x.h"
|
||||||
#include "../common/emu.h"
|
#include "../emu.h"
|
||||||
#include "../common/plat.h"
|
#include "../plat.h"
|
||||||
#include "../common/arm_utils.h"
|
#include "../arm_utils.h"
|
||||||
#include "pollux_set.h"
|
#include "pollux_set.h"
|
||||||
|
|
||||||
static volatile unsigned short *memregs;
|
static volatile unsigned short *memregs;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "../common/input.h"
|
#include "../input.h"
|
||||||
#include "in_evdev.h"
|
#include "in_evdev.h"
|
||||||
|
|
||||||
#define MAX_ABS_DEVS 8
|
#define MAX_ABS_DEVS 8
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "../common/plat.h"
|
#include "../plat.h"
|
||||||
|
|
||||||
/* XXX: maybe unhardcode pagesize? */
|
/* XXX: maybe unhardcode pagesize? */
|
||||||
#define HUGETLB_PAGESIZE (2 * 1024 * 1024)
|
#define HUGETLB_PAGESIZE (2 * 1024 * 1024)
|
||||||
|
|
|
@ -98,7 +98,7 @@ int sndout_oss_write(const void *buff, int len)
|
||||||
return write(sounddev, buff, len);
|
return write(sounddev, buff, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "../common/plat.h"
|
#include "../plat.h"
|
||||||
|
|
||||||
/* not really non-blocking, just detects if blocking occurs
|
/* not really non-blocking, just detects if blocking occurs
|
||||||
* and starts skipping writes in case it does. */
|
* and starts skipping writes in case it does. */
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// ddraw
|
// ddraw
|
||||||
#include <ddraw.h>
|
#include <ddraw.h>
|
||||||
#include "../common/lprintf.h"
|
#include "../lprintf.h"
|
||||||
#include "direct.h"
|
#include "direct.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#include <dsound.h>
|
#include <dsound.h>
|
||||||
|
|
||||||
#include "dsnd.h"
|
#include "dsnd.h"
|
||||||
#include "../common/lprintf.h"
|
#include "../lprintf.h"
|
||||||
|
|
||||||
#define NSEGS 4
|
#define NSEGS 4
|
||||||
#define RELEASE(x) if (x) x->Release(); x=NULL;
|
#define RELEASE(x) if (x) x->Release(); x=NULL;
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
#undef RC_INVOKED
|
#undef RC_INVOKED
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "../common/input.h"
|
#include "../input.h"
|
||||||
#include "../common/emu.h" // array_size
|
#include "../emu.h" // array_size
|
||||||
#include "in_vk.h"
|
#include "in_vk.h"
|
||||||
|
|
||||||
#define IN_VK_PREFIX "vk:"
|
#define IN_VK_PREFIX "vk:"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue