/* * 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 * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * * $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 /** 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 */