mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-31 04:37:25 +00:00
26 lines
489 B
C
26 lines
489 B
C
/*
|
|
* PSP Software Development Kit - https://github.com/pspdev
|
|
* -----------------------------------------------------------------------
|
|
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
|
*
|
|
* pspusbacc.h - Prototypes for the sceUsbAcc library
|
|
*
|
|
* Copyright (c) 2007 dot_blank
|
|
*
|
|
*/
|
|
#ifndef __PSPUSBACC_H__
|
|
#define __PSPUSBACC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PSP_USBACC_DRIVERNAME "USBAccBaseDriver"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|