Files
pspsdk/src/utility/psputility_usbmodules.h
Carsten Teibes 7c6e46b487 Remove outdated svn ids, change url, fix permissions
Convert to unix line endings
2020-05-08 00:50:41 +02:00

49 lines
1.3 KiB
C

/*
* PSP Software Development Kit - https://github.com/pspdev
* -----------------------------------------------------------------------
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
*
* psputility_usbmodules.h - Load usb modules from user mode on 2.70 and higher
*
* Copyright (c) 2007 David Perry <tias_dp@hotmail.com>
*
*/
#ifndef __PSPUTILITY_USBMODULES_H__
#define __PSPUTILITY_USBMODULES_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <psptypes.h>
#define PSP_USB_MODULE_PSPCM 1
#define PSP_USB_MODULE_ACC 2
#define PSP_USB_MODULE_MIC 3 // Requires PSP_USB_MODULE_ACC loading first
#define PSP_USB_MODULE_CAM 4 // Requires PSP_USB_MODULE_ACC loading first
#define PSP_USB_MODULE_GPS 5 // Requires PSP_USB_MODULE_ACC loading first
/**
* Load a usb module (PRX) from user mode.
* Available on firmware 2.70 and higher only.
*
* @param module - module number to load (PSP_USB_MODULE_xxx)
* @return 0 on success, < 0 on error
*/
int sceUtilityLoadUsbModule(int module);
/**
* Unload a usb module (PRX) from user mode.
* Available on firmware 2.70 and higher only.
*
* @param module - module number to be unloaded
* @return 0 on success, < 0 on error
*/
int sceUtilityUnloadUsbModule(int module);
#ifdef __cplusplus
}
#endif
#endif