1#
2# OpenBOR - http://www.LavaLit.com
3# -----------------------------------------------------------------------
4# Licensed under the BSD license, see LICENSE in OpenBOR root for details.
5#
6# Copyright (c) 2004 - 2011 OpenBOR Team
7#
8
9# Define the exports for the prx
10PSP_BEGIN_EXPORTS
11
12# These four lines are mandatory (although you can add other functions like module_stop)
13# syslib is a psynonym for the single mandatory export.
14PSP_EXPORT_START(syslib, 0, 0x8000)
15PSP_EXPORT_FUNC_HASH(module_start)
16PSP_EXPORT_VAR_HASH(module_info)
17PSP_EXPORT_END
18
19PSP_EXPORT_START(control, 0, 0x4001)
20PSP_EXPORT_FUNC(getCtrlData)
21PSP_EXPORT_END
22
23PSP_END_EXPORTS
24