PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
erl-support.c
1/*
2# _____ ___ ____ ___ ____
3# ____| | ____| | | |____|
4# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5#-----------------------------------------------------------------------
6# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7# Licenced under Academic Free License version 2.0
8# Review ps2sdk README & LICENSE files for further details.
9#
10# The erl-tags support
11*/
12
13#include <erl.h>
14
15#ifdef _XINPUT
16char * erl_id = "libinputx";
17#else
18char * erl_id = "libinput";
19#endif
20
21char * erl_dependancies[] = {
22 "libc",
23#ifdef _XINPUT
24 "libmtap",
25#endif
26 "libpad",
27 0
28};