mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 12:42:36 +00:00
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* PSP Software Development Kit - http://www.pspdev.org
|
|
* -----------------------------------------------------------------------
|
|
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
|
*
|
|
* pspkerneltypes.h - PSP kernel types and definitions.
|
|
*
|
|
* Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org>
|
|
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
|
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
|
*
|
|
* $Id: pspkerneltypes.h 1884 2006-04-30 08:55:54Z chip $
|
|
*/
|
|
|
|
/* Note: Some of the structures, types, and definitions in this file were
|
|
extrapolated from symbolic debugging information found in the Japanese
|
|
version of Puzzle Bobble. */
|
|
|
|
#ifndef PSPKERNELTYPES_H
|
|
#define PSPKERNELTYPES_H
|
|
|
|
#include <psptypes.h>
|
|
|
|
/** UIDs are used to describe many different kernel objects. */
|
|
typedef int SceUID;
|
|
|
|
/* Misc. kernel types. */
|
|
typedef unsigned int SceSize;
|
|
typedef int SceSSize;
|
|
|
|
typedef unsigned char SceUChar;
|
|
typedef unsigned int SceUInt;
|
|
|
|
/* File I/O types. */
|
|
typedef int SceMode;
|
|
typedef SceInt64 SceOff;
|
|
typedef SceInt64 SceIores;
|
|
|
|
#endif /* PSPKERNELTYPES_H */
|