diff --git a/bootstrap b/bootstrap index 0aa01e31..14440fc7 100755 --- a/bootstrap +++ b/bootstrap @@ -1,5 +1,5 @@ #!/bin/sh -# PSP Software Development Kit - http://www.pspdev.org +# PSP Software Development Kit - https://github.com/pspdev # ----------------------------------------------------------------------- # Licensed under the BSD license, see LICENSE in PSPSDK root for details. # @@ -9,7 +9,7 @@ # Copyright (c) 2005 Marcus R. Brown # Copyright (c) 2005 James Forshaw # Copyright (c) 2005 John Kelley -#$Id: bootstrap 444 2005-07-03 20:34:12Z mrbrown $ +# progname=`basename $0` top_srcdir=`dirname $0` diff --git a/src/atrac3/pspatrac3.h b/src/atrac3/pspatrac3.h index 6221aba1..54827432 100644 --- a/src/atrac3/pspatrac3.h +++ b/src/atrac3/pspatrac3.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 moonlight * - * $Id: pspatrac3.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __LIBATRAC3_H__ #define __LIBATRAC3_H__ diff --git a/src/audio/pspaudio.h b/src/audio/pspaudio.h index f666a62f..54344147 100644 --- a/src/audio/pspaudio.h +++ b/src/audio/pspaudio.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -11,7 +11,6 @@ * Copyright (c) 2007 Alexander Berl * Copyright (c) 2008 David Perry * - * $Id: pspaudio.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPAUDIO_H #define PSPAUDIO_H diff --git a/src/audio/pspaudio_kernel.h b/src/audio/pspaudio_kernel.h old mode 100755 new mode 100644 index 8007ba93..11bafdec --- a/src/audio/pspaudio_kernel.h +++ b/src/audio/pspaudio_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2007 cooleyes * Copyright (c) 2007 Alexander Berl * - * $Id: pspaudio_kernel.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPAUDIO_KERNEL_H #define PSPAUDIO_KERNEL_H diff --git a/src/audio/pspaudiocodec.h b/src/audio/pspaudiocodec.h index 7f155cc1..f4ebe262 100644 --- a/src/audio/pspaudiocodec.h +++ b/src/audio/pspaudiocodec.h @@ -1,31 +1,30 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * Licensed under the BSD license, see LICENSE in PSPSDK root for details. - * - * pspaudiocodec.h - Prototypes for the sceAudiocodec library. - * - * Copyright (c) 2006 hitchhikr - * - * $Id: pspaudiocodec.h 2430 2008-08-28 12:04:04Z Raphael $ - */ - -#ifdef __cplusplus -extern "C" { -#endif +/* + * PSP Software Development Kit - https://github.com/pspdev + * ----------------------------------------------------------------------- + * Licensed under the BSD license, see LICENSE in PSPSDK root for details. + * + * pspaudiocodec.h - Prototypes for the sceAudiocodec library. + * + * Copyright (c) 2006 hitchhikr + * + */ + +#ifdef __cplusplus +extern "C" { +#endif #define PSP_CODEC_AT3PLUS (0x00001000) #define PSP_CODEC_AT3 (0x00001001) #define PSP_CODEC_MP3 (0x00001002) #define PSP_CODEC_AAC (0x00001003) - - -int sceAudiocodecCheckNeedMem(unsigned long *Buffer, int Type); -int sceAudiocodecInit(unsigned long *Buffer, int Type); -int sceAudiocodecDecode(unsigned long *Buffer, int Type); -int sceAudiocodecGetEDRAM(unsigned long *Buffer, int Type); -int sceAudiocodecReleaseEDRAM(unsigned long *Buffer); - -#ifdef __cplusplus -} -#endif + + +int sceAudiocodecCheckNeedMem(unsigned long *Buffer, int Type); +int sceAudiocodecInit(unsigned long *Buffer, int Type); +int sceAudiocodecDecode(unsigned long *Buffer, int Type); +int sceAudiocodecGetEDRAM(unsigned long *Buffer, int Type); +int sceAudiocodecReleaseEDRAM(unsigned long *Buffer); + +#ifdef __cplusplus +} +#endif diff --git a/src/audio/pspaudiolib.c b/src/audio/pspaudiolib.c index fb3dd2e3..8af9da4d 100644 --- a/src/audio/pspaudiolib.c +++ b/src/audio/pspaudiolib.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 Adresd * Copyright (c) 2005 Marcus R. Brown * - * $Id: pspaudiolib.c 1145 2005-10-12 15:32:44Z mrbrown $ */ #include #include diff --git a/src/audio/pspaudiolib.h b/src/audio/pspaudiolib.h index 2e63108e..e3472213 100644 --- a/src/audio/pspaudiolib.h +++ b/src/audio/pspaudiolib.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 Adresd * Copyright (c) 2005 Marcus R. Brown * - * $Id: pspaudiolib.h 1874 2006-04-18 13:20:58Z tyranid $ */ #ifndef __AUDIOLIB_H__ #define __AUDIOLIB_H__ diff --git a/src/audio/sceAudio_driver.S b/src/audio/sceAudio_driver.S old mode 100755 new mode 100644 diff --git a/src/base/as_reg_compat.h b/src/base/as_reg_compat.h index 305fad0d..346753c5 100644 --- a/src/base/as_reg_compat.h +++ b/src/base/as_reg_compat.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: as_reg_compat.h 540 2005-07-08 19:35:10Z warren $ */ #ifndef __AS_REG_COMPAT_H__ #define __AS_REG_COMPAT_H__ diff --git a/src/base/build.mak b/src/base/build.mak index 68f43e71..c36dee57 100644 --- a/src/base/build.mak +++ b/src/base/build.mak @@ -1,4 +1,4 @@ -# PSP Software Development Kit - http://www.pspdev.org +# PSP Software Development Kit - https://github.com/pspdev # ----------------------------------------------------------------------- # Licensed under the BSD license, see LICENSE in PSPSDK root for details. # @@ -8,7 +8,6 @@ # Copyright (c) 2005 James Forshaw # Copyright (c) 2005 John Kelley # -# $Id: build.mak 2333 2007-10-31 19:37:40Z tyranid $ # Note: The PSPSDK make variable must be defined before this file is included. ifeq ($(PSPSDK),) diff --git a/src/base/build_prx.mak b/src/base/build_prx.mak index f7c45d07..201e6f11 100644 --- a/src/base/build_prx.mak +++ b/src/base/build_prx.mak @@ -1,4 +1,4 @@ -# PSP Software Development Kit - http://www.pspdev.org +# PSP Software Development Kit - https://github.com/pspdev # ----------------------------------------------------------------------- # Licensed under the BSD license, see LICENSE in PSPSDK root for details. # @@ -8,7 +8,6 @@ # Copyright (c) 2005 James Forshaw # Copyright (c) 2005 John Kelley # -# $Id: build.mak 771 2005-07-24 10:43:54Z tyranid $ # Note: The PSPSDK make variable must be defined before this file is included. ifeq ($(PSPSDK),) diff --git a/src/base/psptypes.h b/src/base/psptypes.h index acd88dcb..fb93b8ef 100644 --- a/src/base/psptypes.h +++ b/src/base/psptypes.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: psptypes.h 2312 2007-09-09 15:02:23Z chip $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/ctrl/pspctrl.h b/src/ctrl/pspctrl.h index 781f298b..760bb84a 100644 --- a/src/ctrl/pspctrl.h +++ b/src/ctrl/pspctrl.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspctrl.h 2433 2008-10-15 10:00:27Z iwn $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/ctrl/pspctrl_kernel.h b/src/ctrl/pspctrl_kernel.h index c6540633..074b78bf 100644 --- a/src/ctrl/pspctrl_kernel.h +++ b/src/ctrl/pspctrl_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspctrl_kernel.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __CTRL_KERNEL_H__ diff --git a/src/debug/callstack.c b/src/debug/callstack.c index 33f58053..c492de7b 100644 --- a/src/debug/callstack.c +++ b/src/debug/callstack.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: callstack.c 1492 2005-11-26 23:19:30Z mrbrown $ */ #include "pspdebug.h" diff --git a/src/debug/exception.c b/src/debug/exception.c index 867bcd55..e1e71838 100644 --- a/src/debug/exception.c +++ b/src/debug/exception.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: exception.c 1777 2006-02-01 22:23:22Z tyranid $ */ #include diff --git a/src/debug/exception_asm.S b/src/debug/exception_asm.S index 4bcd1e06..1c9db06c 100644 --- a/src/debug/exception_asm.S +++ b/src/debug/exception_asm.S @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id$ */ #include "as_reg_compat.h" diff --git a/src/debug/font.c b/src/debug/font.c index e6e20984..421f9474 100644 --- a/src/debug/font.c +++ b/src/debug/font.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: font.c 540 2005-07-08 19:35:10Z warren $ */ #include diff --git a/src/debug/gdb-kernellib.c b/src/debug/gdb-kernellib.c index 0ed94b28..1657ceb1 100644 --- a/src/debug/gdb-kernellib.c +++ b/src/debug/gdb-kernellib.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: gdb-kernellib.c 1492 2005-11-26 23:19:30Z mrbrown $ */ #include #include diff --git a/src/debug/gdb-stub.c b/src/debug/gdb-stub.c index b6b50fe5..fa0f1033 100644 --- a/src/debug/gdb-stub.c +++ b/src/debug/gdb-stub.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: gdb-stub.c 1152 2005-10-16 20:37:00Z tyranid $ */ /* Note: there is the odd small bit which comes from the gdb stubs/linux mips stub */ diff --git a/src/debug/gdb-userlib.c b/src/debug/gdb-userlib.c index 6fdb6114..d5993160 100644 --- a/src/debug/gdb-userlib.c +++ b/src/debug/gdb-userlib.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: gdb-userlib.c 2166 2007-02-04 10:52:49Z tyranid $ */ #include #include diff --git a/src/debug/kprintf.c b/src/debug/kprintf.c index 1cf7c080..bbeb6b4b 100644 --- a/src/debug/kprintf.c +++ b/src/debug/kprintf.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: kprintf.c 1095 2005-09-27 21:02:16Z jim $ */ #include diff --git a/src/debug/profiler.c b/src/debug/profiler.c index ccd4ad37..d47f785d 100644 --- a/src/debug/profiler.c +++ b/src/debug/profiler.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: profiler.c 2190 2007-02-25 21:00:40Z tyranid $ */ #include #include diff --git a/src/debug/pspdebug.h b/src/debug/pspdebug.h index 880540fc..ad5f383e 100644 --- a/src/debug/pspdebug.h +++ b/src/debug/pspdebug.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspdebug.h 2450 2009-01-04 23:53:02Z oopo $ */ #ifndef __DEBUG_H__ #define __DEBUG_H__ diff --git a/src/debug/pspdebugkb.c b/src/debug/pspdebugkb.c index 1d0e750b..facf6e6f 100644 --- a/src/debug/pspdebugkb.c +++ b/src/debug/pspdebugkb.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Mike Mallett * - * $Id: pspdebugkb.c 2112 2006-12-22 10:53:20Z tyranid $ */ #include #include diff --git a/src/debug/pspdebugkb.h b/src/debug/pspdebugkb.h index 54592ded..c74bfd94 100644 --- a/src/debug/pspdebugkb.h +++ b/src/debug/pspdebugkb.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Mike Mallett * - * $Id: pspdebugkb.h 2110 2006-12-19 14:50:27Z tyranid $ */ #ifndef __PSPDEBUGKB_H diff --git a/src/debug/scr_printf.c b/src/debug/scr_printf.c index 6db6c96d..35216948 100644 --- a/src/debug/scr_printf.c +++ b/src/debug/scr_printf.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: scr_printf.c 2450 2009-01-04 23:53:02Z oopo $ */ #include #include diff --git a/src/debug/sio.c b/src/debug/sio.c index f3cffefe..97d74b0a 100644 --- a/src/debug/sio.c +++ b/src/debug/sio.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: sio.c 2152 2007-01-27 10:09:15Z tyranid $ */ #include diff --git a/src/debug/stacktrace.c b/src/debug/stacktrace.c index e1fcc222..4b5106ff 100644 --- a/src/debug/stacktrace.c +++ b/src/debug/stacktrace.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: stacktrace.c 1095 2005-09-27 21:02:16Z jim $ */ #include diff --git a/src/debug/stdio.c b/src/debug/stdio.c index 1a5b9cf1..5afa2b72 100644 --- a/src/debug/stdio.c +++ b/src/debug/stdio.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: stdio.c 1925 2006-05-29 14:22:53Z tyranid $ */ #include #include diff --git a/src/display/pspdisplay.h b/src/display/pspdisplay.h index b21a833e..c72ca31d 100644 --- a/src/display/pspdisplay.h +++ b/src/display/pspdisplay.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2007 Alexander Berl * - * $Id: pspdisplay.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __DISPLAY_H__ #define __DISPLAY_H__ diff --git a/src/display/pspdisplay_kernel.h b/src/display/pspdisplay_kernel.h index 694d5ea5..b63fccdc 100644 --- a/src/display/pspdisplay_kernel.h +++ b/src/display/pspdisplay_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2007 Alexander Berl * - * $Id: pspdisplay_kernel.h 2271 2007-07-20 13:08:41Z oopo $ */ #ifndef __DISPLAYKERNEL_H__ #define __DISPLAYKERNEL_H__ diff --git a/src/fpu/pspfpu.c b/src/fpu/pspfpu.c index 0bcab53d..ebc80945 100644 --- a/src/fpu/pspfpu.c +++ b/src/fpu/pspfpu.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/fpu/pspfpu.h b/src/fpu/pspfpu.h index 110be7b0..f5f43991 100644 --- a/src/fpu/pspfpu.h +++ b/src/fpu/pspfpu.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2009 JetCube * Copyright (c) 2006 TyRaNiD (James F.) * - * $Id: pspfpu.h 1782 2006-02-04 12:57:05Z tyranid $ */ #ifndef __PSPFPU_H__ #define __PSPFPU_H__ diff --git a/src/ge/pspge.h b/src/ge/pspge.h index 12df7beb..26401710 100644 --- a/src/ge/pspge.h +++ b/src/ge/pspge.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspge.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __GE_H__ #define __GE_H__ diff --git a/src/gu/callbackFin.c b/src/gu/callbackFin.c index 6a270588..a9b459ed 100644 --- a/src/gu/callbackFin.c +++ b/src/gu/callbackFin.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/callbackSig.c b/src/gu/callbackSig.c index a461bfa6..7864626f 100644 --- a/src/gu/callbackSig.c +++ b/src/gu/callbackSig.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/guInternal.c b/src/gu/guInternal.c index fc3bb813..597dc0a1 100644 --- a/src/gu/guInternal.c +++ b/src/gu/guInternal.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/guInternal.h b/src/gu/guInternal.h index 6b3f422a..b54ec22a 100644 --- a/src/gu/guInternal.h +++ b/src/gu/guInternal.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/pspgu.h b/src/gu/pspgu.h index 5fffd208..91363c33 100644 --- a/src/gu/pspgu.h +++ b/src/gu/pspgu.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/resetValues.c b/src/gu/resetValues.c index fc4d604c..10c596a4 100644 --- a/src/gu/resetValues.c +++ b/src/gu/resetValues.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuAlphaFunc.c b/src/gu/sceGuAlphaFunc.c index 2d07b4d7..8fd20be2 100644 --- a/src/gu/sceGuAlphaFunc.c +++ b/src/gu/sceGuAlphaFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuAmbient.c b/src/gu/sceGuAmbient.c index f27607f2..7f7237aa 100644 --- a/src/gu/sceGuAmbient.c +++ b/src/gu/sceGuAmbient.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuAmbientColor.c b/src/gu/sceGuAmbientColor.c index 71efaaf9..02864a95 100644 --- a/src/gu/sceGuAmbientColor.c +++ b/src/gu/sceGuAmbientColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuBeginObject.c b/src/gu/sceGuBeginObject.c index 11f35678..072ed372 100644 --- a/src/gu/sceGuBeginObject.c +++ b/src/gu/sceGuBeginObject.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuBlendFunc.c b/src/gu/sceGuBlendFunc.c index 424b6104..af90e3a7 100644 --- a/src/gu/sceGuBlendFunc.c +++ b/src/gu/sceGuBlendFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuBoneMatrix.c b/src/gu/sceGuBoneMatrix.c index 707d87f8..2633d67a 100644 --- a/src/gu/sceGuBoneMatrix.c +++ b/src/gu/sceGuBoneMatrix.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuBreak.c b/src/gu/sceGuBreak.c index 64bee925..4ed549c7 100644 --- a/src/gu/sceGuBreak.c +++ b/src/gu/sceGuBreak.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuCallList.c b/src/gu/sceGuCallList.c index 24093479..8d9343c6 100644 --- a/src/gu/sceGuCallList.c +++ b/src/gu/sceGuCallList.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuCallMode.c b/src/gu/sceGuCallMode.c index afd2fadc..7721d5c2 100644 --- a/src/gu/sceGuCallMode.c +++ b/src/gu/sceGuCallMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuCheckList.c b/src/gu/sceGuCheckList.c index 1e87e5fa..7bd2fb04 100644 --- a/src/gu/sceGuCheckList.c +++ b/src/gu/sceGuCheckList.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClear.c b/src/gu/sceGuClear.c index c9297300..36a52b61 100644 --- a/src/gu/sceGuClear.c +++ b/src/gu/sceGuClear.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClearColor.c b/src/gu/sceGuClearColor.c index 0f91ce37..1655c55e 100644 --- a/src/gu/sceGuClearColor.c +++ b/src/gu/sceGuClearColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClearDepth.c b/src/gu/sceGuClearDepth.c index 8595ffe3..3b61831e 100644 --- a/src/gu/sceGuClearDepth.c +++ b/src/gu/sceGuClearDepth.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClearStencil.c b/src/gu/sceGuClearStencil.c index 428b35fb..25272898 100644 --- a/src/gu/sceGuClearStencil.c +++ b/src/gu/sceGuClearStencil.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClutLoad.c b/src/gu/sceGuClutLoad.c index eedb601d..909fb444 100644 --- a/src/gu/sceGuClutLoad.c +++ b/src/gu/sceGuClutLoad.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuClutMode.c b/src/gu/sceGuClutMode.c index d88c69a1..179118b4 100644 --- a/src/gu/sceGuClutMode.c +++ b/src/gu/sceGuClutMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuColor.c b/src/gu/sceGuColor.c index d33f41c5..4ccc4549 100644 --- a/src/gu/sceGuColor.c +++ b/src/gu/sceGuColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuColorFunc.c b/src/gu/sceGuColorFunc.c index 9d09a59b..37d5ff29 100644 --- a/src/gu/sceGuColorFunc.c +++ b/src/gu/sceGuColorFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuColorMaterial.c b/src/gu/sceGuColorMaterial.c index 9ff38fc1..939380c8 100644 --- a/src/gu/sceGuColorMaterial.c +++ b/src/gu/sceGuColorMaterial.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuContinue.c b/src/gu/sceGuContinue.c index e529edb0..f3a5d8c7 100644 --- a/src/gu/sceGuContinue.c +++ b/src/gu/sceGuContinue.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuCopyImage.c b/src/gu/sceGuCopyImage.c index 4201ffd7..76ac2feb 100644 --- a/src/gu/sceGuCopyImage.c +++ b/src/gu/sceGuCopyImage.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDepthBuffer.c b/src/gu/sceGuDepthBuffer.c index 4c788fc4..0c9d8dbc 100644 --- a/src/gu/sceGuDepthBuffer.c +++ b/src/gu/sceGuDepthBuffer.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDepthFunc.c b/src/gu/sceGuDepthFunc.c index a92586a7..039ad2e0 100644 --- a/src/gu/sceGuDepthFunc.c +++ b/src/gu/sceGuDepthFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDepthMask.c b/src/gu/sceGuDepthMask.c index 58876451..fdcab857 100644 --- a/src/gu/sceGuDepthMask.c +++ b/src/gu/sceGuDepthMask.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDepthOffset.c b/src/gu/sceGuDepthOffset.c index fd2997f9..e794be17 100644 --- a/src/gu/sceGuDepthOffset.c +++ b/src/gu/sceGuDepthOffset.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDepthRange.c b/src/gu/sceGuDepthRange.c index 772ca19a..d305115f 100644 --- a/src/gu/sceGuDepthRange.c +++ b/src/gu/sceGuDepthRange.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDisable.c b/src/gu/sceGuDisable.c index e1f2882a..fe71498d 100644 --- a/src/gu/sceGuDisable.c +++ b/src/gu/sceGuDisable.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDispBuffer.c b/src/gu/sceGuDispBuffer.c index b321026d..16a3efa3 100644 --- a/src/gu/sceGuDispBuffer.c +++ b/src/gu/sceGuDispBuffer.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDisplay.c b/src/gu/sceGuDisplay.c index 64acad78..873102a0 100644 --- a/src/gu/sceGuDisplay.c +++ b/src/gu/sceGuDisplay.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawArray.c b/src/gu/sceGuDrawArray.c index d2cad1db..01ce9453 100644 --- a/src/gu/sceGuDrawArray.c +++ b/src/gu/sceGuDrawArray.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawArrayN.c b/src/gu/sceGuDrawArrayN.c index 53e306ea..73d9cd9d 100644 --- a/src/gu/sceGuDrawArrayN.c +++ b/src/gu/sceGuDrawArrayN.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawBezier.c b/src/gu/sceGuDrawBezier.c index 1e855d9f..5cc0b71d 100644 --- a/src/gu/sceGuDrawBezier.c +++ b/src/gu/sceGuDrawBezier.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawBuffer.c b/src/gu/sceGuDrawBuffer.c index afa7bef3..b147b881 100644 --- a/src/gu/sceGuDrawBuffer.c +++ b/src/gu/sceGuDrawBuffer.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawBufferList.c b/src/gu/sceGuDrawBufferList.c index 04f434a8..78520011 100644 --- a/src/gu/sceGuDrawBufferList.c +++ b/src/gu/sceGuDrawBufferList.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuDrawSpline.c b/src/gu/sceGuDrawSpline.c index 313c6336..56e243df 100644 --- a/src/gu/sceGuDrawSpline.c +++ b/src/gu/sceGuDrawSpline.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuEnable.c b/src/gu/sceGuEnable.c index 5225163d..e3962d10 100644 --- a/src/gu/sceGuEnable.c +++ b/src/gu/sceGuEnable.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuEndObject.c b/src/gu/sceGuEndObject.c index 03e3823d..eae8c4b7 100644 --- a/src/gu/sceGuEndObject.c +++ b/src/gu/sceGuEndObject.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuFinish.c b/src/gu/sceGuFinish.c index 1e2ed371..2589b645 100644 --- a/src/gu/sceGuFinish.c +++ b/src/gu/sceGuFinish.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuFog.c b/src/gu/sceGuFog.c index 481b0ee2..cfe92333 100644 --- a/src/gu/sceGuFog.c +++ b/src/gu/sceGuFog.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuFrontFace.c b/src/gu/sceGuFrontFace.c index 526dbe2c..9dbf9ae8 100644 --- a/src/gu/sceGuFrontFace.c +++ b/src/gu/sceGuFrontFace.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuGetAllStatus.c b/src/gu/sceGuGetAllStatus.c index 1706cf5b..724ca54d 100644 --- a/src/gu/sceGuGetAllStatus.c +++ b/src/gu/sceGuGetAllStatus.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuGetMemory.c b/src/gu/sceGuGetMemory.c index c7817b96..0a77ca20 100644 --- a/src/gu/sceGuGetMemory.c +++ b/src/gu/sceGuGetMemory.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuGetStatus.c b/src/gu/sceGuGetStatus.c index a35f537c..3b3ece25 100644 --- a/src/gu/sceGuGetStatus.c +++ b/src/gu/sceGuGetStatus.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuInit.c b/src/gu/sceGuInit.c index 8a5f06fb..2f29637d 100644 --- a/src/gu/sceGuInit.c +++ b/src/gu/sceGuInit.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLight.c b/src/gu/sceGuLight.c index 1e6683f3..897bbb17 100644 --- a/src/gu/sceGuLight.c +++ b/src/gu/sceGuLight.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLightAtt.c b/src/gu/sceGuLightAtt.c index 2bb2199c..cc17e25c 100644 --- a/src/gu/sceGuLightAtt.c +++ b/src/gu/sceGuLightAtt.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLightColor.c b/src/gu/sceGuLightColor.c index bd1a3e70..0c7201d0 100644 --- a/src/gu/sceGuLightColor.c +++ b/src/gu/sceGuLightColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLightMode.c b/src/gu/sceGuLightMode.c index a04924ee..78eddea2 100644 --- a/src/gu/sceGuLightMode.c +++ b/src/gu/sceGuLightMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLightSpot.c b/src/gu/sceGuLightSpot.c index 3b8de9ed..6255b35e 100644 --- a/src/gu/sceGuLightSpot.c +++ b/src/gu/sceGuLightSpot.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuLogicalOp.c b/src/gu/sceGuLogicalOp.c index 1b29726a..eced429a 100644 --- a/src/gu/sceGuLogicalOp.c +++ b/src/gu/sceGuLogicalOp.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuMaterial.c b/src/gu/sceGuMaterial.c index 1c5ada20..eb28ad48 100644 --- a/src/gu/sceGuMaterial.c +++ b/src/gu/sceGuMaterial.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuModelColor.c b/src/gu/sceGuModelColor.c index f3c24613..4fdb74b6 100644 --- a/src/gu/sceGuModelColor.c +++ b/src/gu/sceGuModelColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuMorphWeight.c b/src/gu/sceGuMorphWeight.c index 01eabf09..d83d89ca 100644 --- a/src/gu/sceGuMorphWeight.c +++ b/src/gu/sceGuMorphWeight.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuOffset.c b/src/gu/sceGuOffset.c index ab20d99f..631ebe0a 100644 --- a/src/gu/sceGuOffset.c +++ b/src/gu/sceGuOffset.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuPatchDivide.c b/src/gu/sceGuPatchDivide.c index 5c4b7acb..003b8929 100644 --- a/src/gu/sceGuPatchDivide.c +++ b/src/gu/sceGuPatchDivide.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuPatchFrontFace.c b/src/gu/sceGuPatchFrontFace.c index d400b58f..3e52f3c2 100644 --- a/src/gu/sceGuPatchFrontFace.c +++ b/src/gu/sceGuPatchFrontFace.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuPatchPrim.c b/src/gu/sceGuPatchPrim.c index 4b7e8ba4..3c8f02f9 100644 --- a/src/gu/sceGuPatchPrim.c +++ b/src/gu/sceGuPatchPrim.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuPixelMask.c b/src/gu/sceGuPixelMask.c index 9fbfb4ff..126a6982 100644 --- a/src/gu/sceGuPixelMask.c +++ b/src/gu/sceGuPixelMask.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuScissor.c b/src/gu/sceGuScissor.c index 5180567c..42e6f5e6 100644 --- a/src/gu/sceGuScissor.c +++ b/src/gu/sceGuScissor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSendCommandf.c b/src/gu/sceGuSendCommandf.c index 18c05e0d..47a17558 100644 --- a/src/gu/sceGuSendCommandf.c +++ b/src/gu/sceGuSendCommandf.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSendCommandi.c b/src/gu/sceGuSendCommandi.c index d2aeb0a8..afa7e10e 100644 --- a/src/gu/sceGuSendCommandi.c +++ b/src/gu/sceGuSendCommandi.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSendList.c b/src/gu/sceGuSendList.c index 459d0dd8..da4fed04 100644 --- a/src/gu/sceGuSendList.c +++ b/src/gu/sceGuSendList.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSetAllStatus.c b/src/gu/sceGuSetAllStatus.c index 5f82fed0..d4fbedf9 100644 --- a/src/gu/sceGuSetAllStatus.c +++ b/src/gu/sceGuSetAllStatus.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSetCallback.c b/src/gu/sceGuSetCallback.c index 6431bd15..e101a46e 100644 --- a/src/gu/sceGuSetCallback.c +++ b/src/gu/sceGuSetCallback.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSetDither.c b/src/gu/sceGuSetDither.c index 2dc03be7..f0d2d778 100644 --- a/src/gu/sceGuSetDither.c +++ b/src/gu/sceGuSetDither.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSetMatrix.c b/src/gu/sceGuSetMatrix.c index ac0eea6e..a7ac9d42 100644 --- a/src/gu/sceGuSetMatrix.c +++ b/src/gu/sceGuSetMatrix.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSetStatus.c b/src/gu/sceGuSetStatus.c index 777d4cde..b127f032 100644 --- a/src/gu/sceGuSetStatus.c +++ b/src/gu/sceGuSetStatus.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuShadeModel.c b/src/gu/sceGuShadeModel.c index 4e4fc97f..040154e6 100644 --- a/src/gu/sceGuShadeModel.c +++ b/src/gu/sceGuShadeModel.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSignal.c b/src/gu/sceGuSignal.c index 610368a8..da4aa15d 100644 --- a/src/gu/sceGuSignal.c +++ b/src/gu/sceGuSignal.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSpecular.c b/src/gu/sceGuSpecular.c index 9f860d4d..74e3c926 100644 --- a/src/gu/sceGuSpecular.c +++ b/src/gu/sceGuSpecular.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuStart.c b/src/gu/sceGuStart.c index e8a2bceb..e77dd4a8 100644 --- a/src/gu/sceGuStart.c +++ b/src/gu/sceGuStart.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuStencilFunc.c b/src/gu/sceGuStencilFunc.c index 57f19a50..1d03f1d4 100644 --- a/src/gu/sceGuStencilFunc.c +++ b/src/gu/sceGuStencilFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuStencilOp.c b/src/gu/sceGuStencilOp.c index 143aeb91..7f343a83 100644 --- a/src/gu/sceGuStencilOp.c +++ b/src/gu/sceGuStencilOp.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSwapBuffers.c b/src/gu/sceGuSwapBuffers.c index bedce660..1a28c87f 100644 --- a/src/gu/sceGuSwapBuffers.c +++ b/src/gu/sceGuSwapBuffers.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuSync.c b/src/gu/sceGuSync.c index 5632d0ba..34e93489 100644 --- a/src/gu/sceGuSync.c +++ b/src/gu/sceGuSync.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTerm.c b/src/gu/sceGuTerm.c index f763f5c6..6e9c6900 100644 --- a/src/gu/sceGuTerm.c +++ b/src/gu/sceGuTerm.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexEnvColor.c b/src/gu/sceGuTexEnvColor.c index ea107f5b..50a57bb3 100644 --- a/src/gu/sceGuTexEnvColor.c +++ b/src/gu/sceGuTexEnvColor.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexFilter.c b/src/gu/sceGuTexFilter.c index e5e93897..c7a1c95a 100644 --- a/src/gu/sceGuTexFilter.c +++ b/src/gu/sceGuTexFilter.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexFlush.c b/src/gu/sceGuTexFlush.c index 83b9802d..06cc01f6 100644 --- a/src/gu/sceGuTexFlush.c +++ b/src/gu/sceGuTexFlush.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexFunc.c b/src/gu/sceGuTexFunc.c index d79d9c7b..10b3519f 100644 --- a/src/gu/sceGuTexFunc.c +++ b/src/gu/sceGuTexFunc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexImage.c b/src/gu/sceGuTexImage.c index 17e6e87d..fd7b1997 100644 --- a/src/gu/sceGuTexImage.c +++ b/src/gu/sceGuTexImage.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexLevelMode.c b/src/gu/sceGuTexLevelMode.c index ec09c295..e88ccdbb 100644 --- a/src/gu/sceGuTexLevelMode.c +++ b/src/gu/sceGuTexLevelMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexMapMode.c b/src/gu/sceGuTexMapMode.c index 781e8ae5..6250255d 100644 --- a/src/gu/sceGuTexMapMode.c +++ b/src/gu/sceGuTexMapMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexMode.c b/src/gu/sceGuTexMode.c index f5e70482..1d7138e7 100644 --- a/src/gu/sceGuTexMode.c +++ b/src/gu/sceGuTexMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexOffset.c b/src/gu/sceGuTexOffset.c index 5717ed3d..6fa3fc6a 100644 --- a/src/gu/sceGuTexOffset.c +++ b/src/gu/sceGuTexOffset.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexProjMapMode.c b/src/gu/sceGuTexProjMapMode.c index 35934625..f3690e9c 100644 --- a/src/gu/sceGuTexProjMapMode.c +++ b/src/gu/sceGuTexProjMapMode.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexScale.c b/src/gu/sceGuTexScale.c index fac5fad8..104bb314 100644 --- a/src/gu/sceGuTexScale.c +++ b/src/gu/sceGuTexScale.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexSlope.c b/src/gu/sceGuTexSlope.c index 181d0bdd..2ea77ce4 100644 --- a/src/gu/sceGuTexSlope.c +++ b/src/gu/sceGuTexSlope.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexSync.c b/src/gu/sceGuTexSync.c index 84aa0e54..9a8c32d4 100644 --- a/src/gu/sceGuTexSync.c +++ b/src/gu/sceGuTexSync.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuTexWrap.c b/src/gu/sceGuTexWrap.c index e72cdbe1..fda52afe 100644 --- a/src/gu/sceGuTexWrap.c +++ b/src/gu/sceGuTexWrap.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sceGuViewport.c b/src/gu/sceGuViewport.c index 74fa2dd9..342f02d0 100644 --- a/src/gu/sceGuViewport.c +++ b/src/gu/sceGuViewport.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gu/sendCommand.c b/src/gu/sendCommand.c index ceb24303..ced9edb6 100644 --- a/src/gu/sendCommand.c +++ b/src/gu/sendCommand.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gum/gumInternal.c b/src/gum/gumInternal.c index 75050361..02cf077a 100644 --- a/src/gum/gumInternal.c +++ b/src/gum/gumInternal.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gum/gumInternal.h b/src/gum/gumInternal.h index e1403cab..57010958 100644 --- a/src/gum/gumInternal.h +++ b/src/gum/gumInternal.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gum/pspgum.c b/src/gum/pspgum.c index 99239b7c..1ad2a5ef 100644 --- a/src/gum/pspgum.c +++ b/src/gum/pspgum.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gum/pspgum.h b/src/gum/pspgum.h index 57f8fcf6..0baf46af 100644 --- a/src/gum/pspgum.h +++ b/src/gum/pspgum.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/gum/pspgum_vfpu.c b/src/gum/pspgum_vfpu.c index ecfc6f1d..5fcb8eec 100644 --- a/src/gum/pspgum_vfpu.c +++ b/src/gum/pspgum_vfpu.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/hprm/psphprm.h b/src/hprm/psphprm.h index cca6c11a..f09231f9 100644 --- a/src/hprm/psphprm.h +++ b/src/hprm/psphprm.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Adresd * - * $Id: psphprm.h 1480 2005-11-25 16:10:18Z mrbrown $ */ #ifndef __HPRM_H__ #define __HPRM_H__ diff --git a/src/kernel/InitForKernel.S b/src/kernel/InitForKernel.S old mode 100755 new mode 100644 diff --git a/src/kernel/pspaudiorouting.h b/src/kernel/pspaudiorouting.h old mode 100755 new mode 100644 index 58a3d193..16891bc4 --- a/src/kernel/pspaudiorouting.h +++ b/src/kernel/pspaudiorouting.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2007 Alexander Berl * - * $Id: pspinit.h 2345 2007-12-08 02:34:59Z raphael $ */ #ifndef __PSPAUDIOROUTING_H__ #define __PSPAUDIOROUTING_H__ diff --git a/src/kernel/pspexception.h b/src/kernel/pspexception.h index 423275dc..3779717c 100644 --- a/src/kernel/pspexception.h +++ b/src/kernel/pspexception.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 James F. * - * $Id: pspexception.h 1906 2006-05-09 18:42:57Z tyranid $ */ #ifndef PSPEXCEPTION_H diff --git a/src/kernel/pspidstorage.h b/src/kernel/pspidstorage.h index fed52f03..de22949d 100644 --- a/src/kernel/pspidstorage.h +++ b/src/kernel/pspidstorage.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Harley G. * - * $Id: pspidstorage.h 2120 2006-12-30 23:19:33Z tyranid $ */ #ifndef PSPIDSTORAGE_H diff --git a/src/kernel/pspimpose_driver.h b/src/kernel/pspimpose_driver.h index ff64cf13..08c8cad3 100644 --- a/src/kernel/pspimpose_driver.h +++ b/src/kernel/pspimpose_driver.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2007 Iaroslav Gaponenko * - * $Id: pspimpose_driver.h$ */ #ifndef __IMPOSE_DRIVER_H__ diff --git a/src/kernel/pspinit.h b/src/kernel/pspinit.h old mode 100755 new mode 100644 index 9fbb4e93..d0715c6e --- a/src/kernel/pspinit.h +++ b/src/kernel/pspinit.h @@ -1,74 +1,73 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * Licensed under the BSD license, see LICENSE in PSPSDK root for details. - * - * pspinit.h - Interface to InitForKernel. - * - * Copyright (c) 2007 moonlight - * - * $Id: pspinit.h 2433 2008-10-15 10:00:27Z iwn $ - */ -#ifndef __PSPINIT_H__ -#define __PSPINIT_H__ - -enum PSPBootFrom -{ - PSP_BOOT_FLASH = 0, /* ? */ - PSP_BOOT_DISC = 0x20, - PSP_BOOT_MS = 0x40, -}; - -enum PSPInitApitype -{ - PSP_INIT_APITYPE_DISC = 0x120, - PSP_INIT_APITYPE_DISC_UPDATER = 0x121, - PSP_INIT_APITYPE_MS1 = 0x140, - PSP_INIT_APITYPE_MS2 = 0x141, - PSP_INIT_APITYPE_MS3 = 0x142, - PSP_INIT_APITYPE_MS4 = 0x143, - PSP_INIT_APITYPE_MS5 = 0x144, - PSP_INIT_APITYPE_VSH1 = 0x210, /* ExitGame */ - PSP_INIT_APITYPE_VSH2 = 0x220, /* ExitVSH */ -}; - -enum PSPKeyConfig -{ - PSP_INIT_KEYCONFIG_VSH = 0x100, - PSP_INIT_KEYCONFIG_GAME = 0x200, - PSP_INIT_KEYCONFIG_POPS = 0x300, -}; - -/** - * Gets the api type - * - * @return the api type in which the system has booted -*/ -int sceKernelInitApitype(); - -/** - * Gets the filename of the executable to be launched after all modules of the api. - * - * @return filename of executable or NULL if no executable found. -*/ -char *sceKernelInitFileName(); - -/** - * - * Gets the device in which the application was launched. - * - * @return the device code, one of PSPBootFrom values. -*/ -int sceKernelBootFrom(); - -/** - * Get the key configuration in which the system has booted. - * - * @return the key configuration code, one of PSPKeyConfig values -*/ -int InitForKernel_7233B5BC(); - -#define sceKernelInitKeyConfig InitForKernel_7233B5BC - -#endif - +/* + * PSP Software Development Kit - https://github.com/pspdev + * ----------------------------------------------------------------------- + * Licensed under the BSD license, see LICENSE in PSPSDK root for details. + * + * pspinit.h - Interface to InitForKernel. + * + * Copyright (c) 2007 moonlight + * + */ +#ifndef __PSPINIT_H__ +#define __PSPINIT_H__ + +enum PSPBootFrom +{ + PSP_BOOT_FLASH = 0, /* ? */ + PSP_BOOT_DISC = 0x20, + PSP_BOOT_MS = 0x40, +}; + +enum PSPInitApitype +{ + PSP_INIT_APITYPE_DISC = 0x120, + PSP_INIT_APITYPE_DISC_UPDATER = 0x121, + PSP_INIT_APITYPE_MS1 = 0x140, + PSP_INIT_APITYPE_MS2 = 0x141, + PSP_INIT_APITYPE_MS3 = 0x142, + PSP_INIT_APITYPE_MS4 = 0x143, + PSP_INIT_APITYPE_MS5 = 0x144, + PSP_INIT_APITYPE_VSH1 = 0x210, /* ExitGame */ + PSP_INIT_APITYPE_VSH2 = 0x220, /* ExitVSH */ +}; + +enum PSPKeyConfig +{ + PSP_INIT_KEYCONFIG_VSH = 0x100, + PSP_INIT_KEYCONFIG_GAME = 0x200, + PSP_INIT_KEYCONFIG_POPS = 0x300, +}; + +/** + * Gets the api type + * + * @return the api type in which the system has booted +*/ +int sceKernelInitApitype(); + +/** + * Gets the filename of the executable to be launched after all modules of the api. + * + * @return filename of executable or NULL if no executable found. +*/ +char *sceKernelInitFileName(); + +/** + * + * Gets the device in which the application was launched. + * + * @return the device code, one of PSPBootFrom values. +*/ +int sceKernelBootFrom(); + +/** + * Get the key configuration in which the system has booted. + * + * @return the key configuration code, one of PSPKeyConfig values +*/ +int InitForKernel_7233B5BC(); + +#define sceKernelInitKeyConfig InitForKernel_7233B5BC + +#endif + diff --git a/src/kernel/pspintrman_kernel.h b/src/kernel/pspintrman_kernel.h index 144f1034..d6c60f3b 100644 --- a/src/kernel/pspintrman_kernel.h +++ b/src/kernel/pspintrman_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F. (tyranid@gmail.com) * - * $Id: pspintrman_kernel.h 2100 2006-12-12 19:04:19Z tyranid $ */ #ifndef PSPINTRMAN_KERNEL_H diff --git a/src/kernel/pspiofilemgr_kernel.h b/src/kernel/pspiofilemgr_kernel.h index 6211e3e6..5707c0e6 100644 --- a/src/kernel/pspiofilemgr_kernel.h +++ b/src/kernel/pspiofilemgr_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspiofilemgr_kernel.h 1939 2006-06-04 22:03:42Z tyranid $ */ #ifndef PSPIOFILEMGR_KERNEL_H diff --git a/src/kernel/pspkdebug.h b/src/kernel/pspkdebug.h index 1abe82d4..30b68835 100644 --- a/src/kernel/pspkdebug.h +++ b/src/kernel/pspkdebug.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: pspkdebug.h 1971 2006-07-17 19:43:52Z tyranid $ */ #ifndef PSPKDEBUG_H diff --git a/src/kernel/pspkernel.h b/src/kernel/pspkernel.h index b8a9f30d..3db1c545 100644 --- a/src/kernel/pspkernel.h +++ b/src/kernel/pspkernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspkernel.h 1207 2005-10-23 05:50:29Z mrbrown $ */ #ifndef PSPKERNEL_H diff --git a/src/kernel/psploadcore.h b/src/kernel/psploadcore.h index a8c0bed1..00090415 100644 --- a/src/kernel/psploadcore.h +++ b/src/kernel/psploadcore.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: psploadcore.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPLOADCORE_H diff --git a/src/kernel/psploadexec_kernel.h b/src/kernel/psploadexec_kernel.h index 4b1c4f4d..b6406c86 100644 --- a/src/kernel/psploadexec_kernel.h +++ b/src/kernel/psploadexec_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2007 - DA (Taken from the 303oe SDK) * - * $Id$ */ #ifndef PSPLOADEXEC_KERNEL_H diff --git a/src/kernel/pspmodulemgr_kernel.h b/src/kernel/pspmodulemgr_kernel.h index 9b93ae3e..42bca17a 100644 --- a/src/kernel/pspmodulemgr_kernel.h +++ b/src/kernel/pspmodulemgr_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspmodulemgr.h 792 2005-07-27 09:03:36Z warren $ */ #ifndef __MODMGRKERNEL_H__ diff --git a/src/kernel/pspstdio_kernel.h b/src/kernel/pspstdio_kernel.h index 38ef6cb0..90808ff2 100644 --- a/src/kernel/pspstdio_kernel.h +++ b/src/kernel/pspstdio_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspstdio_kernel.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef PSPSTDIO_KERNEL_H diff --git a/src/kernel/pspsysclib.h b/src/kernel/pspsysclib.h index e49ca71f..57d99171 100644 --- a/src/kernel/pspsysclib.h +++ b/src/kernel/pspsysclib.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2007 James F * - * $Id$ */ #ifndef PSPSYSCLIB_H diff --git a/src/kernel/pspsyscon.h b/src/kernel/pspsyscon.h index e8450646..8db0051b 100644 --- a/src/kernel/pspsyscon.h +++ b/src/kernel/pspsyscon.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 James F * - * $Id: pspsyscon.h 2413 2008-07-23 22:04:04Z raphael $ */ #ifndef PSPSYSCON_H diff --git a/src/kernel/pspsysevent.h b/src/kernel/pspsysevent.h index 0698208b..62a66407 100644 --- a/src/kernel/pspsysevent.h +++ b/src/kernel/pspsysevent.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/kernel/pspsysmem_kernel.h b/src/kernel/pspsysmem_kernel.h index e33a89d9..10d44422 100644 --- a/src/kernel/pspsysmem_kernel.h +++ b/src/kernel/pspsysmem_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F. * - * $Id: pspsysmem.h 1095 2005-09-27 21:02:16Z jim $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/kernel/pspsysreg.h b/src/kernel/pspsysreg.h index 5a1ae086..c056b94e 100644 --- a/src/kernel/pspsysreg.h +++ b/src/kernel/pspsysreg.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspsysreg.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef PSPSYSREG_H diff --git a/src/kernel/pspsystimer.h b/src/kernel/pspsystimer.h index 537a6b38..1437c80e 100644 --- a/src/kernel/pspsystimer.h +++ b/src/kernel/pspsystimer.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2007 Iaroslav Gaponenko * - * $Id: pspsystimer.h 2149 2007-01-25 20:46:21Z tyranid $ */ #ifndef __SYSTIMER_H__ diff --git a/src/kernel/pspthreadman_kernel.h b/src/kernel/pspthreadman_kernel.h index 13e227ba..899ee0a2 100644 --- a/src/kernel/pspthreadman_kernel.h +++ b/src/kernel/pspthreadman_kernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F. * - * $Id: pspthreadman_kernel.h 2131 2007-01-15 21:42:22Z tyranid $ */ #ifndef PSPTHREADMANKERNEL_H diff --git a/src/kernel/psputilsforkernel.h b/src/kernel/psputilsforkernel.h index 83a543e6..4063c028 100644 --- a/src/kernel/psputilsforkernel.h +++ b/src/kernel/psputilsforkernel.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 adresd * - * $Id: psputilsforkernel.h 2339 2007-12-06 19:41:18Z raphael $ */ #ifndef __PSPUTILSFORKERNEL_H__ diff --git a/src/kernel/sceAudioRouting_driver.S b/src/kernel/sceAudioRouting_driver.S old mode 100755 new mode 100644 diff --git a/src/libc/alloc.c b/src/libc/alloc.c index 113927dd..b2123c83 100644 --- a/src/libc/alloc.c +++ b/src/libc/alloc.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: alloc.c 540 2005-07-08 19:35:10Z warren $ */ /* This code is based on code contributed by Philip Joaqiun (jenova0). */ #include diff --git a/src/libc/assert.h b/src/libc/assert.h index 55ae58c0..1cf4b482 100644 --- a/src/libc/assert.h +++ b/src/libc/assert.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: assert.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __ASSERT_H__ #define __ASSERT_H__ diff --git a/src/libc/ctype.h b/src/libc/ctype.h index 8e30b9f8..e6a56551 100644 --- a/src/libc/ctype.h +++ b/src/libc/ctype.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: ctype.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __CTYPE_H__ diff --git a/src/libc/cxx.cpp b/src/libc/cxx.cpp index 99b58e41..76f98b6e 100644 --- a/src/libc/cxx.cpp +++ b/src/libc/cxx.cpp @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: cxx.cpp 339 2005-06-27 02:24:25Z warren $ */ #include #include diff --git a/src/libc/init.c b/src/libc/init.c index 55915e07..1ebe1e46 100644 --- a/src/libc/init.c +++ b/src/libc/init.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: init.c 540 2005-07-08 19:35:10Z warren $ */ void _pspsdk_alloc_init(); void _pspsdk_alloc_deinit(); diff --git a/src/libc/libcglue.c b/src/libc/libcglue.c index a3aa2436..158bdbc8 100644 --- a/src/libc/libcglue.c +++ b/src/libc/libcglue.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/libc/malloc.h b/src/libc/malloc.h index 7cfb1353..bdb1c227 100644 --- a/src/libc/malloc.h +++ b/src/libc/malloc.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: malloc.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef _MALLOC_H diff --git a/src/libc/qsort.c b/src/libc/qsort.c index 120d76df..359b4700 100644 --- a/src/libc/qsort.c +++ b/src/libc/qsort.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: qsort.c 540 2005-07-08 19:35:10Z warren $ */ /*- diff --git a/src/libc/setjmp.S b/src/libc/setjmp.S index 5410c81f..b8144869 100644 --- a/src/libc/setjmp.S +++ b/src/libc/setjmp.S @@ -7,7 +7,6 @@ # Licenced under Academic Free License version 2.0 # Review ps2sdk README & LICENSE files for further details. # -# $Id: setjmp.S 486 2005-07-05 05:05:45Z mrbrown $ # This is a simple version of setjmp and longjmp. # Floating point support in. */ diff --git a/src/libc/stdio.c b/src/libc/stdio.c index 92e5b7aa..9bc056b1 100644 --- a/src/libc/stdio.c +++ b/src/libc/stdio.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: stdio.c 2335 2007-11-06 07:47:36Z warren $ */ #include #include diff --git a/src/libc/stdio.h b/src/libc/stdio.h index 9f9b5084..e6cecc28 100644 --- a/src/libc/stdio.h +++ b/src/libc/stdio.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: stdio.h 2335 2007-11-06 07:47:36Z warren $ */ #ifndef __STDIO_H__ diff --git a/src/libc/stdlib.c b/src/libc/stdlib.c index 3c030636..e807b72a 100644 --- a/src/libc/stdlib.c +++ b/src/libc/stdlib.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: stdlib.c 2414 2008-07-29 03:52:23Z jim $ */ #include #include diff --git a/src/libc/stdlib.h b/src/libc/stdlib.h index 35b81b34..3a235153 100644 --- a/src/libc/stdlib.h +++ b/src/libc/stdlib.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: stdlib.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __STDLIB_H__ diff --git a/src/libc/string.c b/src/libc/string.c index d10b8f89..50406941 100644 --- a/src/libc/string.c +++ b/src/libc/string.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: string.c 1710 2006-01-17 01:24:53Z jim $ */ #include #include diff --git a/src/libc/string.h b/src/libc/string.h index 5d3025d0..3bb9221d 100644 --- a/src/libc/string.h +++ b/src/libc/string.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: string.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef _STRING_H diff --git a/src/libc/terminate.c b/src/libc/terminate.c index 7be725a4..588d0110 100644 --- a/src/libc/terminate.c +++ b/src/libc/terminate.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: terminate.c 802 2005-07-30 19:38:02Z stefan $ */ #include #include diff --git a/src/libc/time.h b/src/libc/time.h index 0c13dc30..842a0f03 100644 --- a/src/libc/time.h +++ b/src/libc/time.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: time.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef _TIME_H diff --git a/src/libc/unistd.h b/src/libc/unistd.h index 4b2018c8..ade53982 100644 --- a/src/libc/unistd.h +++ b/src/libc/unistd.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: unistd.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __UNISTD_H__ diff --git a/src/libc/xprintf.c b/src/libc/xprintf.c index d46ecf22..021ae176 100644 --- a/src/libc/xprintf.c +++ b/src/libc/xprintf.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: xprintf.c 540 2005-07-08 19:35:10Z warren $ */ /* Code borrowed from mysql's xprintf.c, by Richard Hipp */ /* This xprintf.c file on which this one is based is in public domain. */ diff --git a/src/mp3/Makefile.am b/src/mp3/Makefile.am old mode 100755 new mode 100644 diff --git a/src/mp3/pspmp3.h b/src/mp3/pspmp3.h old mode 100755 new mode 100644 index 1240bfab..20a87edd --- a/src/mp3/pspmp3.h +++ b/src/mp3/pspmp3.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2008 David Perry * Copyright (c) 2008 Alexander Berl * - * $Id: $ */ #ifndef __SCELIBMP3_H__ diff --git a/src/mp3/sceMp3.S b/src/mp3/sceMp3.S old mode 100755 new mode 100644 diff --git a/src/mpeg/pspjpeg.h b/src/mpeg/pspjpeg.h old mode 100755 new mode 100644 index feb2a96e..614add4d --- a/src/mpeg/pspjpeg.h +++ b/src/mpeg/pspjpeg.h @@ -1,69 +1,68 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * Licensed under the BSD license, see LICENSE in PSPSDK root for details. - * - * pspjpeg.h - Prototypes for the sceJpeg library - * - * Copyright (c) 2007 dot_blank - * - * $Id: pspjpeg.h 2433 2008-10-15 10:00:27Z iwn $ - */ -#ifndef __PSPJPEG_H__ -#define __PSPJPEG_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -#include - -/** - * Inits the MJpeg library - * - * @return 0 on success, < 0 on error -*/ -int sceJpegInitMJpeg(void); - -/** - * Finishes the MJpeg library - * - * @return 0 on success, < 0 on error -*/ -int sceJpegFinishMJpeg(void); - -/** - * Creates the decoder context. - * - * @param width - The width of the frame - * @param height - The height of the frame - * - * @return 0 on success, < 0 on error -*/ -int sceJpegCreateMJpeg(int width, int height); - -/** - * Deletes the current decoder context. - * - * @return 0 on success, < 0 on error -*/ -int sceJpegDeleteMJpeg(void); - -/** - * Decodes a mjpeg frame. - * - * @param jpegbuf - the buffer with the mjpeg frame - * @param size - size of the buffer pointed by jpegbuf - * @param rgba - buffer where the decoded data in RGBA format will be stored. - * It should have a size of (width * height * 4). - * @param unk - Unknown, pass 0 - * - * @return (width * 65536) + height on success, < 0 on error -*/ -int sceJpegDecodeMJpeg(u8 *jpegbuf, SceSize size, void *rgba, u32 unk); - -#ifdef __cplusplus -} -#endif - -#endif +/* + * PSP Software Development Kit - https://github.com/pspdev + * ----------------------------------------------------------------------- + * Licensed under the BSD license, see LICENSE in PSPSDK root for details. + * + * pspjpeg.h - Prototypes for the sceJpeg library + * + * Copyright (c) 2007 dot_blank + * + */ +#ifndef __PSPJPEG_H__ +#define __PSPJPEG_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +/** + * Inits the MJpeg library + * + * @return 0 on success, < 0 on error +*/ +int sceJpegInitMJpeg(void); + +/** + * Finishes the MJpeg library + * + * @return 0 on success, < 0 on error +*/ +int sceJpegFinishMJpeg(void); + +/** + * Creates the decoder context. + * + * @param width - The width of the frame + * @param height - The height of the frame + * + * @return 0 on success, < 0 on error +*/ +int sceJpegCreateMJpeg(int width, int height); + +/** + * Deletes the current decoder context. + * + * @return 0 on success, < 0 on error +*/ +int sceJpegDeleteMJpeg(void); + +/** + * Decodes a mjpeg frame. + * + * @param jpegbuf - the buffer with the mjpeg frame + * @param size - size of the buffer pointed by jpegbuf + * @param rgba - buffer where the decoded data in RGBA format will be stored. + * It should have a size of (width * height * 4). + * @param unk - Unknown, pass 0 + * + * @return (width * 65536) + height on success, < 0 on error +*/ +int sceJpegDecodeMJpeg(u8 *jpegbuf, SceSize size, void *rgba, u32 unk); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/mpeg/pspmpeg.h b/src/mpeg/pspmpeg.h index d4ac5ae1..4a1d2f75 100644 --- a/src/mpeg/pspmpeg.h +++ b/src/mpeg/pspmpeg.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2006 Sorin P. C. * Copyright (c) 2007 Alexander Berl * - * $Id: pspmpeg.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __SCELIBMPEG_H__ diff --git a/src/mpeg/pspmpegbase.h b/src/mpeg/pspmpegbase.h old mode 100755 new mode 100644 index e4ed2993..e7bc3b68 --- a/src/mpeg/pspmpegbase.h +++ b/src/mpeg/pspmpegbase.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,28 +9,27 @@ * Copyright (c) 2007 cooleyes * Copyright (c) 2007 Alexander Berl * - * $Id: pspmpegbase.h 2341 2007-12-06 20:05:52Z raphael $ */ #ifndef __SCELIBMPEGBASE_H__ -#define __SCELIBMPEGBASE_H__ - - -#include - - -#ifdef __cplusplus -extern "C" { -#endif - - -typedef struct SceMpegLLI -{ - ScePVoid pSrc; - ScePVoid pDst; - ScePVoid Next; - SceInt32 iSize; -} __attribute__((aligned(64))) SceMpegLLI; +#define __SCELIBMPEGBASE_H__ + + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + + +typedef struct SceMpegLLI +{ + ScePVoid pSrc; + ScePVoid pDst; + ScePVoid Next; + SceInt32 iSize; +} __attribute__((aligned(64))) SceMpegLLI; @@ -51,16 +50,16 @@ typedef struct SceMpegYCrCbBuffer SceInt32 iFrameBufferWidth; SceInt32 iUnknown3[11]; } __attribute__((aligned(64))) SceMpegYCrCbBuffer; - - -SceInt32 sceMpegBaseYCrCbCopyVme(ScePVoid YUVBuffer, SceInt32 *Buffer, SceInt32 Type); -SceInt32 sceMpegBaseCscInit(SceInt32 width); -SceInt32 sceMpegBaseCscVme(ScePVoid pRGBbuffer, ScePVoid pRGBbuffer2, SceInt32 width, SceMpegYCrCbBuffer* pYCrCbBuffer); - -SceInt32 sceMpegbase_BEA18F91(SceMpegLLI *pLLI); - -#ifdef __cplusplus -} -#endif - -#endif + + +SceInt32 sceMpegBaseYCrCbCopyVme(ScePVoid YUVBuffer, SceInt32 *Buffer, SceInt32 Type); +SceInt32 sceMpegBaseCscInit(SceInt32 width); +SceInt32 sceMpegBaseCscVme(ScePVoid pRGBbuffer, ScePVoid pRGBbuffer2, SceInt32 width, SceMpegYCrCbBuffer* pYCrCbBuffer); + +SceInt32 sceMpegbase_BEA18F91(SceMpegLLI *pLLI); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/mpeg/sceJpeg.S b/src/mpeg/sceJpeg.S old mode 100755 new mode 100644 diff --git a/src/mpeg/sceMpegbase.S b/src/mpeg/sceMpegbase.S old mode 100755 new mode 100644 diff --git a/src/mpeg/sceMpegbase_driver.S b/src/mpeg/sceMpegbase_driver.S old mode 100755 new mode 100644 diff --git a/src/nand/pspnand_driver.h b/src/nand/pspnand_driver.h index f1923874..de8b13e2 100644 --- a/src/nand/pspnand_driver.h +++ b/src/nand/pspnand_driver.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus R. Brown * - * $Id: pspnand_driver.h 1211 2005-10-24 06:36:00Z mrbrown $ */ #ifndef PSPNAND_DRIVER_H diff --git a/src/net/psphttp.h b/src/net/psphttp.h index e4651067..9667afec 100644 --- a/src/net/psphttp.h +++ b/src/net/psphttp.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/net/pspnet.h b/src/net/pspnet.h index fba6947d..55d5914e 100644 --- a/src/net/pspnet.h +++ b/src/net/pspnet.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * * Portions based on PspPet's wifi_03 sample code. * - * $Id: pspnet.h 2439 2008-10-23 18:58:06Z iwn $ */ #ifndef PSPNET_H diff --git a/src/net/pspnet_adhoc.h b/src/net/pspnet_adhoc.h index 420c9489..3e1fa6ff 100644 --- a/src/net/pspnet_adhoc.h +++ b/src/net/pspnet_adhoc.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * * Based on the adhoc code in SMS Plus * - * $Id: pspnet_adhoc.h 2400 2008-07-06 22:46:56Z iwn $ */ #ifndef __PSPNET_ADHOC_H__ #define __PSPNET_ADHOC_H__ diff --git a/src/net/pspnet_adhocctl.h b/src/net/pspnet_adhocctl.h index 11fac97c..f357322c 100644 --- a/src/net/pspnet_adhocctl.h +++ b/src/net/pspnet_adhocctl.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * * Based on the adhoc code in SMS Plus * - * $Id: pspnet_adhocctl.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPNETCTL_ADHOC_H__ #define __PSPNETCTL_ADHOC_H__ diff --git a/src/net/pspnet_adhocmatching.h b/src/net/pspnet_adhocmatching.h index 5704771b..b361056e 100644 --- a/src/net/pspnet_adhocmatching.h +++ b/src/net/pspnet_adhocmatching.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * * Based on the adhoc code in SMS Plus * - * $Id: pspnet_adhocmatching.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPNETMATCHING_ADHOC_H__ #define __PSPNETMATCHING_ADHOC_H__ diff --git a/src/net/pspnet_apctl.h b/src/net/pspnet_apctl.h index 01f6c43d..9bcce95d 100644 --- a/src/net/pspnet_apctl.h +++ b/src/net/pspnet_apctl.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * * Portions based on PspPet's wifi_03 sample code. * - * $Id: pspnet_apctl.h 2434 2008-10-15 17:37:25Z iwn $ */ #ifndef PSPNET_APCTL_H diff --git a/src/net/pspnet_inet.h b/src/net/pspnet_inet.h index 61a0177f..e5160063 100644 --- a/src/net/pspnet_inet.h +++ b/src/net/pspnet_inet.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * * Portions based on PspPet's wifi_03 sample code. * - * $Id: pspnet_inet.h 1541 2005-12-08 05:49:20Z mrbrown $ */ #ifndef PSPNET_INET_H diff --git a/src/net/pspnet_resolver.h b/src/net/pspnet_resolver.h index beeb678c..df0ff285 100644 --- a/src/net/pspnet_resolver.h +++ b/src/net/pspnet_resolver.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * * Portions based on PspPet's wifi_03 sample code. * - * $Id: pspnet_resolver.h 1661 2006-01-08 13:36:35Z tyranid $ */ #ifndef PSPNET_RESOLVER_H diff --git a/src/net/pspssl.h b/src/net/pspssl.h index 71ec9477..b4bced2c 100644 --- a/src/net/pspssl.h +++ b/src/net/pspssl.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/openpsid/pspopenpsid.h b/src/openpsid/pspopenpsid.h old mode 100755 new mode 100644 index 13ee1097..949924b0 --- a/src/openpsid/pspopenpsid.h +++ b/src/openpsid/pspopenpsid.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/power/psppower.h b/src/power/psppower.h index 5fc8238a..bbd37666 100644 --- a/src/power/psppower.h +++ b/src/power/psppower.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 David Perry * - * $Id: psppower.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __POWER_H__ #define __POWER_H__ diff --git a/src/prof/prof.c b/src/prof/prof.c index 7aafaebb..c3cc96f3 100644 --- a/src/prof/prof.c +++ b/src/prof/prof.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 urchin * - * $Id$ */ #include #include diff --git a/src/prof/pspprof.h b/src/prof/pspprof.h index e065627a..d47722ac 100644 --- a/src/prof/pspprof.h +++ b/src/prof/pspprof.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Urchin * - * $Id$ */ #ifndef __PSPPROF_H__ #define __PSPPROF_H__ diff --git a/src/registry/pspreg.h b/src/registry/pspreg.h index 71758692..705dc553 100644 --- a/src/registry/pspreg.h +++ b/src/registry/pspreg.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F * - * $Id: pspreg.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __REG_H__ diff --git a/src/rtc/psprtc.h b/src/rtc/psprtc.h index 58f8c37b..be3aef0f 100644 --- a/src/rtc/psprtc.h +++ b/src/rtc/psprtc.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psprtc.h 2091 2006-12-06 18:11:29Z tyranid $ */ #ifndef __PSPRTC_H__ #define __PSPRTC_H__ diff --git a/src/samples/audio/polyphonic/main.c b/src/samples/audio/polyphonic/main.c index 0a9d072b..35d39eec 100644 --- a/src/samples/audio/polyphonic/main.c +++ b/src/samples/audio/polyphonic/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Frank Buss (aka Shine) * - * $Id: main.c 1147 2005-10-12 15:52:52Z mrbrown $ */ #include #include diff --git a/src/samples/controller/basic/main.c b/src/samples/controller/basic/main.c index 6d2c298d..9367aa9f 100644 --- a/src/samples/controller/basic/main.c +++ b/src/samples/controller/basic/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -11,7 +11,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Donour Sizemore * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/debugkb/main.c b/src/samples/debug/debugkb/main.c index 66bca7d4..1145c0ff 100644 --- a/src/samples/debug/debugkb/main.c +++ b/src/samples/debug/debugkb/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Mike Mallett * - * $Id: main.c 2110 2006-12-19 14:50:27Z tyranid $ */ #include diff --git a/src/samples/debug/exception/main.c b/src/samples/debug/exception/main.c index de12f7e3..29b1743c 100644 --- a/src/samples/debug/exception/main.c +++ b/src/samples/debug/exception/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/gdb/main.c b/src/samples/debug/gdb/main.c index cf9aef0d..92cdea47 100644 --- a/src/samples/debug/gdb/main.c +++ b/src/samples/debug/gdb/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/kprintf/main.c b/src/samples/debug/kprintf/main.c index 28176ed3..7d7e1510 100644 --- a/src/samples/debug/kprintf/main.c +++ b/src/samples/debug/kprintf/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/profiler/main.c b/src/samples/debug/profiler/main.c index d1740378..7ff5e6fe 100644 --- a/src/samples/debug/profiler/main.c +++ b/src/samples/debug/profiler/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/prxdecrypt/main.c b/src/samples/debug/prxdecrypt/main.c index 00c78c7d..8925a41f 100644 --- a/src/samples/debug/prxdecrypt/main.c +++ b/src/samples/debug/prxdecrypt/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/debug/sio/main.c b/src/samples/debug/sio/main.c index d1fcb7db..1f977153 100644 --- a/src/samples/debug/sio/main.c +++ b/src/samples/debug/sio/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/gu/beginobject/beginobject.c b/src/samples/gu/beginobject/beginobject.c index 52dd5327..a1187a12 100644 --- a/src/samples/gu/beginobject/beginobject.c +++ b/src/samples/gu/beginobject/beginobject.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/blend/blend.c b/src/samples/gu/blend/blend.c index ca120d39..324f8d20 100644 --- a/src/samples/gu/blend/blend.c +++ b/src/samples/gu/blend/blend.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/blit/blit.c b/src/samples/gu/blit/blit.c index bf6842c1..edf8ac84 100644 --- a/src/samples/gu/blit/blit.c +++ b/src/samples/gu/blit/blit.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/celshading/celshading.c b/src/samples/gu/celshading/celshading.c index 42e510f9..f28188ac 100644 --- a/src/samples/gu/celshading/celshading.c +++ b/src/samples/gu/celshading/celshading.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/clut/clut.c b/src/samples/gu/clut/clut.c index 74e6cb4b..143d748d 100644 --- a/src/samples/gu/clut/clut.c +++ b/src/samples/gu/clut/clut.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/common/callbacks.c b/src/samples/gu/common/callbacks.c index 22e2e104..c1edf363 100644 --- a/src/samples/gu/common/callbacks.c +++ b/src/samples/gu/common/callbacks.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/common/menu.c b/src/samples/gu/common/menu.c index 1afb6219..8ec5f9b0 100644 --- a/src/samples/gu/common/menu.c +++ b/src/samples/gu/common/menu.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/copy/copy.c b/src/samples/gu/copy/copy.c index b76669fa..104604f2 100644 --- a/src/samples/gu/copy/copy.c +++ b/src/samples/gu/copy/copy.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/cube/cube.c b/src/samples/gu/cube/cube.c index 155e23c8..13a99a18 100644 --- a/src/samples/gu/cube/cube.c +++ b/src/samples/gu/cube/cube.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/envmap/envmap.c b/src/samples/gu/envmap/envmap.c index e1c8bf8e..d17087dc 100644 --- a/src/samples/gu/envmap/envmap.c +++ b/src/samples/gu/envmap/envmap.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/integerdrawing/integerdrawing.c b/src/samples/gu/integerdrawing/integerdrawing.c index 640418f7..c0ba81bd 100644 --- a/src/samples/gu/integerdrawing/integerdrawing.c +++ b/src/samples/gu/integerdrawing/integerdrawing.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/lights/lights.c b/src/samples/gu/lights/lights.c index c30165d8..bfc519f3 100644 --- a/src/samples/gu/lights/lights.c +++ b/src/samples/gu/lights/lights.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/lines/lines.c b/src/samples/gu/lines/lines.c index 508e1637..40ccdf2f 100644 --- a/src/samples/gu/lines/lines.c +++ b/src/samples/gu/lines/lines.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/logic/logic.c b/src/samples/gu/logic/logic.c index 41ab15aa..3509fc03 100644 --- a/src/samples/gu/logic/logic.c +++ b/src/samples/gu/logic/logic.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/morph/morph.c b/src/samples/gu/morph/morph.c index 3fcf08e3..78d862f3 100644 --- a/src/samples/gu/morph/morph.c +++ b/src/samples/gu/morph/morph.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/morphskin/morphskin.c b/src/samples/gu/morphskin/morphskin.c index 350c3d29..538f29c5 100644 --- a/src/samples/gu/morphskin/morphskin.c +++ b/src/samples/gu/morphskin/morphskin.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/ortho/ortho.c b/src/samples/gu/ortho/ortho.c index 5c6d4bdb..ad547c89 100644 --- a/src/samples/gu/ortho/ortho.c +++ b/src/samples/gu/ortho/ortho.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/reflection/reflection.c b/src/samples/gu/reflection/reflection.c index b0c7ef08..a8e73085 100644 --- a/src/samples/gu/reflection/reflection.c +++ b/src/samples/gu/reflection/reflection.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/rendertarget/rendertarget.c b/src/samples/gu/rendertarget/rendertarget.c index 21d8229f..7dec6b2b 100644 --- a/src/samples/gu/rendertarget/rendertarget.c +++ b/src/samples/gu/rendertarget/rendertarget.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/shadowprojection/shadowprojection.c b/src/samples/gu/shadowprojection/shadowprojection.c index 7197e52b..6882b17d 100644 --- a/src/samples/gu/shadowprojection/shadowprojection.c +++ b/src/samples/gu/shadowprojection/shadowprojection.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/signals/signals.c b/src/samples/gu/signals/signals.c index af084533..fc61aca1 100644 --- a/src/samples/gu/signals/signals.c +++ b/src/samples/gu/signals/signals.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/skinning/skinning.c b/src/samples/gu/skinning/skinning.c index 308dfb4d..8b5d064b 100644 --- a/src/samples/gu/skinning/skinning.c +++ b/src/samples/gu/skinning/skinning.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/speed/speed.c b/src/samples/gu/speed/speed.c index 3e088a62..32c0be01 100644 --- a/src/samples/gu/speed/speed.c +++ b/src/samples/gu/speed/speed.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/splinesurface/splinesurface.c b/src/samples/gu/splinesurface/splinesurface.c index 8de764e2..f95fecee 100644 --- a/src/samples/gu/splinesurface/splinesurface.c +++ b/src/samples/gu/splinesurface/splinesurface.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/sprite/sprite.c b/src/samples/gu/sprite/sprite.c index 665e0a2e..2e48aaf3 100644 --- a/src/samples/gu/sprite/sprite.c +++ b/src/samples/gu/sprite/sprite.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/text/main.c b/src/samples/gu/text/main.c index 8a04fabb..592dc72f 100644 --- a/src/samples/gu/text/main.c +++ b/src/samples/gu/text/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/timing/timing.c b/src/samples/gu/timing/timing.c index 2fbe0117..ebc36d2b 100644 --- a/src/samples/gu/timing/timing.c +++ b/src/samples/gu/timing/timing.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/vertex/vertex.c b/src/samples/gu/vertex/vertex.c index 548e35cf..0f7c9076 100644 --- a/src/samples/gu/vertex/vertex.c +++ b/src/samples/gu/vertex/vertex.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/gu/zbufferfog/zbufferfog.c b/src/samples/gu/zbufferfog/zbufferfog.c index aef564d5..49b365a8 100644 --- a/src/samples/gu/zbufferfog/zbufferfog.c +++ b/src/samples/gu/zbufferfog/zbufferfog.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/ir/irda/main.c b/src/samples/ir/irda/main.c index 1e05ff20..4548b38b 100644 --- a/src/samples/ir/irda/main.c +++ b/src/samples/ir/irda/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Frank Buss (aka Shine) * - * $Id: main.c 705 2005-07-20 18:09:56Z tyranid $ */ #include #include diff --git a/src/samples/ir/sircs/main.c b/src/samples/ir/sircs/main.c index ffbf8cdb..c9b069ec 100644 --- a/src/samples/ir/sircs/main.c +++ b/src/samples/ir/sircs/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/kernel/cwd/main.c b/src/samples/kernel/cwd/main.c index 1e28861c..7ba640c9 100644 --- a/src/samples/kernel/cwd/main.c +++ b/src/samples/kernel/cwd/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Jim Paris * - * $Id: main.c 1175 2005-10-20 15:41:33Z chip $ */ #include #include diff --git a/src/samples/kernel/fileio/main.c b/src/samples/kernel/fileio/main.c index 545713ad..e60cdd3a 100644 --- a/src/samples/kernel/fileio/main.c +++ b/src/samples/kernel/fileio/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 2389 2008-05-24 17:42:11Z iwn $ */ #include #include @@ -268,7 +267,7 @@ void dump_flashrom(int lower) void show_menu(void) { - printf("PSP Dumping Tool - TyRaNiD 2k5. (www.pspdev.org)\n"); + printf("PSP Dumping Tool - TyRaNiD 2k5. (github.com/pspdev)\n"); printf("Press triangle to dump umd boot.bin\n"); printf("Press circle to dump flash0\n"); printf("Press square to dump flash1\n"); diff --git a/src/samples/kernel/idstorage/main.c b/src/samples/kernel/idstorage/main.c index 7de08e2a..31dd61e4 100644 --- a/src/samples/kernel/idstorage/main.c +++ b/src/samples/kernel/idstorage/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/kernel/kdumper/main.c b/src/samples/kernel/kdumper/main.c index 8447ce9f..33363f6c 100644 --- a/src/samples/kernel/kdumper/main.c +++ b/src/samples/kernel/kdumper/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/kernel/loadmodule/main.c b/src/samples/kernel/loadmodule/main.c index 336f6bb3..589c963c 100644 --- a/src/samples/kernel/loadmodule/main.c +++ b/src/samples/kernel/loadmodule/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ /* WARNING: This sample currently crashes, due to a bug in the PSP's kernel. We're working on a fix. */ diff --git a/src/samples/kernel/messagebox/main.c b/src/samples/kernel/messagebox/main.c index e9b63dbe..e212c718 100644 --- a/src/samples/kernel/messagebox/main.c +++ b/src/samples/kernel/messagebox/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus Comstedt * - * $Id: main.c 2166 2007-02-04 10:52:49Z tyranid $ */ #include #include diff --git a/src/samples/kernel/regenum/main.c b/src/samples/kernel/regenum/main.c index 850908a6..7f8d86bf 100644 --- a/src/samples/kernel/regenum/main.c +++ b/src/samples/kernel/regenum/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,8 +7,6 @@ * * Copyright (c) 2006 James F * - * $Id$ - * $HeadURL$ */ #include #include diff --git a/src/samples/kernel/registry/main.c b/src/samples/kernel/registry/main.c index c1715c53..762dca2d 100644 --- a/src/samples/kernel/registry/main.c +++ b/src/samples/kernel/registry/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,8 +7,6 @@ * * Copyright (c) 2006 James F * - * $Id: main.c 2096 2006-12-10 14:19:25Z tyranid $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/kernel/registry/main.c $ */ #include #include diff --git a/src/samples/kernel/sysevent/main.c b/src/samples/kernel/sysevent/main.c index 90274653..a76b58db 100644 --- a/src/samples/kernel/sysevent/main.c +++ b/src/samples/kernel/sysevent/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/kernel/systimer/main.c b/src/samples/kernel/systimer/main.c index 8173ffd3..a3bbd04f 100644 --- a/src/samples/kernel/systimer/main.c +++ b/src/samples/kernel/systimer/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,8 +7,6 @@ * * Copyright (c) 2007 Iaroslav Gaponenko * - * $Id: main.c 2149 2007-01-25 20:46:21Z tyranid $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/kernel/systimer/main.c $ */ #include #include diff --git a/src/samples/kernel/threadstatus/main.c b/src/samples/kernel/threadstatus/main.c index b3fbb9a3..47ff97ea 100644 --- a/src/samples/kernel/threadstatus/main.c +++ b/src/samples/kernel/threadstatus/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 705 2005-07-20 18:09:56Z tyranid $ */ #include #include diff --git a/src/samples/me/basic/main.c b/src/samples/me/basic/main.c index 24f1791e..0eb18ddc 100644 --- a/src/samples/me/basic/main.c +++ b/src/samples/me/basic/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/mp3/Makefile.sample b/src/samples/mp3/Makefile.sample old mode 100755 new mode 100644 diff --git a/src/samples/mp3/main.c b/src/samples/mp3/main.c old mode 100755 new mode 100644 index 269668a1..028776b9 --- a/src/samples/mp3/main.c +++ b/src/samples/mp3/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2008 Alexander Berl * - * $Id: $ */ #include #include diff --git a/src/samples/ms/callback/main.c b/src/samples/ms/callback/main.c index 1edfe55e..a85516b0 100644 --- a/src/samples/ms/callback/main.c +++ b/src/samples/ms/callback/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,8 +7,6 @@ * * Copyright (c) 2006 Iaroslav Gaponenko * - * $Id: main.c 2006 2006-09-17 21:48:56Z tyranid $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/ms/callback/main.c $ */ #include #include diff --git a/src/samples/nand/dumpipl/main.c b/src/samples/nand/dumpipl/main.c index b280526e..37d4804d 100644 --- a/src/samples/nand/dumpipl/main.c +++ b/src/samples/nand/dumpipl/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -17,7 +17,6 @@ * that point to the block offsets of the IPL itself. The table is terminated * with an entry of zero. * - * $Id: main.c 1212 2005-10-24 06:36:57Z mrbrown $ */ #include diff --git a/src/samples/net/resolver/main.c b/src/samples/net/resolver/main.c index 475f8319..ccd1ff1a 100644 --- a/src/samples/net/resolver/main.c +++ b/src/samples/net/resolver/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,8 +8,6 @@ * Copyright (c) 2006 James F * Some small parts (c) 2005 PSPPet * - * $Id: main.c 2435 2008-10-15 18:05:02Z iwn $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/net/resolver/main.c $ */ #include #include diff --git a/src/samples/net/simple/main.c b/src/samples/net/simple/main.c index a94d7c92..fecc5303 100644 --- a/src/samples/net/simple/main.c +++ b/src/samples/net/simple/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,8 +8,6 @@ * Copyright (c) 2005 James F * Some small parts (c) 2005 PSPPet * - * $Id: main.c 2435 2008-10-15 18:05:02Z iwn $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/net/simple/main.c $ */ #include #include diff --git a/src/samples/net/simple_prx/main.c b/src/samples/net/simple_prx/main.c index 79428d17..f37ccd81 100644 --- a/src/samples/net/simple_prx/main.c +++ b/src/samples/net/simple_prx/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,8 +9,6 @@ * Copyright (c) 2005 James F * Some small parts (c) 2005 PSPPet * - * $Id: main.c 2435 2008-10-15 18:05:02Z iwn $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/net/simple_prx/main.c $ */ #include #include diff --git a/src/samples/net/wlanscan/main.c b/src/samples/net/wlanscan/main.c index 88b466f8..e60bfb82 100644 --- a/src/samples/net/wlanscan/main.c +++ b/src/samples/net/wlanscan/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,8 +10,6 @@ * * Copyright (c) 2006 James F * - * $Id: main.c 1699 2006-01-15 23:46:00Z tyranid $ - * $HeadURL: svn://svn.ps2dev.org/psp/trunk/pspsdk/src/samples/net/wlanscan/main.c $ */ #include #include diff --git a/src/samples/net/wlanscan_elf/main.c b/src/samples/net/wlanscan_elf/main.c index 253401b3..d840a5ed 100644 --- a/src/samples/net/wlanscan_elf/main.c +++ b/src/samples/net/wlanscan_elf/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,8 +8,6 @@ * Copyright (c) 2005 James F * adresd * - * $Id: main.c 1888 2006-05-01 08:47:04Z tyranid $ - * $HeadURL$ */ #include #include diff --git a/src/samples/power/main.c b/src/samples/power/main.c index a85ecc43..47d4b0c1 100644 --- a/src/samples/power/main.c +++ b/src/samples/power/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: main.c 1869 2006-04-09 14:21:59Z tyranid $ */ #include #include diff --git a/src/samples/prx/prx_loader/main.c b/src/samples/prx/prx_loader/main.c index 6127df65..995a6cb7 100644 --- a/src/samples/prx/prx_loader/main.c +++ b/src/samples/prx/prx_loader/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1095 2005-09-27 21:02:16Z jim $ */ #include #include diff --git a/src/samples/prx/testprx/main.c b/src/samples/prx/testprx/main.c index bc7ebe1d..472c2f87 100644 --- a/src/samples/prx/testprx/main.c +++ b/src/samples/prx/testprx/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: main.c 1531 2005-12-07 18:27:12Z tyranid $ */ #include #include diff --git a/src/samples/savedata/decrypt/decrypt.c b/src/samples/savedata/decrypt/decrypt.c index 013152eb..9840c75a 100644 --- a/src/samples/savedata/decrypt/decrypt.c +++ b/src/samples/savedata/decrypt/decrypt.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: decrypt.c 1562 2005-12-10 20:52:45Z jim $ */ #include "decrypt.h" diff --git a/src/samples/savedata/decrypt/decrypt.h b/src/samples/savedata/decrypt/decrypt.h index 5bb48c40..3be1595a 100644 --- a/src/samples/savedata/decrypt/decrypt.h +++ b/src/samples/savedata/decrypt/decrypt.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: decrypt.h 1562 2005-12-10 20:52:45Z jim $ */ #include diff --git a/src/samples/savedata/decrypt/main.c b/src/samples/savedata/decrypt/main.c index 0a97ff32..250e5ba6 100644 --- a/src/samples/savedata/decrypt/main.c +++ b/src/samples/savedata/decrypt/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: main.c 1996 2006-09-05 01:31:55Z jim $ */ #include diff --git a/src/samples/savedata/encrypt/encrypt.c b/src/samples/savedata/encrypt/encrypt.c index 13afd87f..ab23bc1d 100644 --- a/src/samples/savedata/encrypt/encrypt.c +++ b/src/samples/savedata/encrypt/encrypt.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: encrypt.c 1560 2005-12-10 01:16:32Z jim $ */ #include "encrypt.h" diff --git a/src/samples/savedata/encrypt/encrypt.h b/src/samples/savedata/encrypt/encrypt.h index 63780af8..d18669d9 100644 --- a/src/samples/savedata/encrypt/encrypt.h +++ b/src/samples/savedata/encrypt/encrypt.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: encrypt.h 1559 2005-12-10 01:10:11Z jim $ */ #include diff --git a/src/samples/savedata/encrypt/hash.c b/src/samples/savedata/encrypt/hash.c index 52afa43d..6360a0e4 100644 --- a/src/samples/savedata/encrypt/hash.c +++ b/src/samples/savedata/encrypt/hash.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: hash.c 1560 2005-12-10 01:16:32Z jim $ */ #include "hash.h" diff --git a/src/samples/savedata/encrypt/hash.h b/src/samples/savedata/encrypt/hash.h index 978627a6..9c0f62d0 100644 --- a/src/samples/savedata/encrypt/hash.h +++ b/src/samples/savedata/encrypt/hash.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: hash.h 1559 2005-12-10 01:10:11Z jim $ */ #include diff --git a/src/samples/savedata/encrypt/main.c b/src/samples/savedata/encrypt/main.c index 273bb353..6ef2a4e9 100644 --- a/src/samples/savedata/encrypt/main.c +++ b/src/samples/savedata/encrypt/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: main.c 1559 2005-12-10 01:10:11Z jim $ */ #include diff --git a/src/samples/savedata/encrypt/psf.c b/src/samples/savedata/encrypt/psf.c index 5f68b1cc..d9197692 100644 --- a/src/samples/savedata/encrypt/psf.c +++ b/src/samples/savedata/encrypt/psf.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: psf.c 1560 2005-12-10 01:16:32Z jim $ */ #include "psf.h" diff --git a/src/samples/savedata/encrypt/psf.h b/src/samples/savedata/encrypt/psf.h index 261e241e..aee37a60 100644 --- a/src/samples/savedata/encrypt/psf.h +++ b/src/samples/savedata/encrypt/psf.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Coypright (c) 2005 psp123 * - * $Id: psf.h 1559 2005-12-10 01:10:11Z jim $ */ #include diff --git a/src/samples/savedata/utility/main.c b/src/samples/savedata/utility/main.c index f16408af..ea810d2e 100644 --- a/src/samples/savedata/utility/main.c +++ b/src/samples/savedata/utility/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * (c) 2007 InsertWittyName (tias_dp@hotmail.com) * Based on work by Shine * - * $Id: main.c 2364 2008-02-16 22:07:09Z iwn $ */ #include #include diff --git a/src/samples/template/elf_template/main.c b/src/samples/template/elf_template/main.c index 29283185..91fd8cb7 100644 --- a/src/samples/template/elf_template/main.c +++ b/src/samples/template/elf_template/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,8 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1888 2006-05-01 08:47:04Z tyranid $ - * $HeadURL$ */ #include #include diff --git a/src/samples/template/kprx_template/main.c b/src/samples/template/kprx_template/main.c index 9eb228c5..aa7bca98 100644 --- a/src/samples/template/kprx_template/main.c +++ b/src/samples/template/kprx_template/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,8 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id$ - * $HeadURL$ */ #include #include diff --git a/src/samples/template/lib_template/template.c b/src/samples/template/lib_template/template.c index a25616ca..e69e2ea8 100644 --- a/src/samples/template/lib_template/template.c +++ b/src/samples/template/lib_template/template.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F * - * $Id: template.c 1888 2006-05-01 08:47:04Z tyranid $ */ #include "template.h" diff --git a/src/samples/template/lib_template/template.h b/src/samples/template/lib_template/template.h index 967226be..bb892aa8 100644 --- a/src/samples/template/lib_template/template.h +++ b/src/samples/template/lib_template/template.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James F * - * $Id: template.h 1888 2006-05-01 08:47:04Z tyranid $ */ #ifndef __TEMPLATE_H diff --git a/src/samples/template/prx_template/main.c b/src/samples/template/prx_template/main.c index 73fb7afb..a86973db 100644 --- a/src/samples/template/prx_template/main.c +++ b/src/samples/template/prx_template/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,8 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: main.c 1888 2006-05-01 08:47:04Z tyranid $ - * $HeadURL$ */ #include #include diff --git a/src/samples/usb/storage/main.c b/src/samples/usb/storage/main.c index b58337ff..dc12a040 100644 --- a/src/samples/usb/storage/main.c +++ b/src/samples/usb/storage/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Derived from code written by PspPet * Code flow and API usage from VSH module "sysconf_plugin.prx" * - * $Id: main.c 1882 2006-04-24 00:25:11Z jim $ */ #include #include diff --git a/src/samples/utility/gamesharing/main.c b/src/samples/utility/gamesharing/main.c index bbcc9bb9..4a3f6e25 100644 --- a/src/samples/utility/gamesharing/main.c +++ b/src/samples/utility/gamesharing/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/utility/msgdialog/main.c b/src/samples/utility/msgdialog/main.c index a7977a77..b830c3ba 100644 --- a/src/samples/utility/msgdialog/main.c +++ b/src/samples/utility/msgdialog/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Marcus Comstedt * (c) 2008 InsertWittyName * - * $Id: main.c 2364 2008-02-16 22:07:09Z iwn $ */ #include #include diff --git a/src/samples/utility/netconf/main.c b/src/samples/utility/netconf/main.c index c578efd4..fdf0e565 100644 --- a/src/samples/utility/netconf/main.c +++ b/src/samples/utility/netconf/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: main.c 1869 2006-04-09 14:21:59Z tyranid $ */ #include #include diff --git a/src/samples/utility/netdialog/main.c b/src/samples/utility/netdialog/main.c index f7d9d80a..8a419890 100644 --- a/src/samples/utility/netdialog/main.c +++ b/src/samples/utility/netdialog/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/samples/utility/osk/Makefile.sample b/src/samples/utility/osk/Makefile.sample old mode 100755 new mode 100644 diff --git a/src/samples/utility/osk/main.c b/src/samples/utility/osk/main.c old mode 100755 new mode 100644 diff --git a/src/samples/utility/systemparam/main.c b/src/samples/utility/systemparam/main.c index 68d824ea..2fa3d481 100644 --- a/src/samples/utility/systemparam/main.c +++ b/src/samples/utility/systemparam/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: main.c 1869 2006-04-09 14:21:59Z tyranid $ */ #include #include diff --git a/src/samples/wlan/main.c b/src/samples/wlan/main.c index d5c83687..d68c30e3 100644 --- a/src/samples/wlan/main.c +++ b/src/samples/wlan/main.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: main.c 2207 2007-03-16 16:42:08Z tyranid $ */ #include #include diff --git a/src/sdk/fixup.c b/src/sdk/fixup.c index 700364a4..0242ef5d 100644 --- a/src/sdk/fixup.c +++ b/src/sdk/fixup.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Marcus R. Brown * - * $Id: fixup.c 1888 2006-05-01 08:47:04Z tyranid $ */ #include diff --git a/src/sdk/inethelper.c b/src/sdk/inethelper.c index 75bba7e8..7eabae04 100644 --- a/src/sdk/inethelper.c +++ b/src/sdk/inethelper.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Marcus R. Brown * - * $Id: inethelper.c 2432 2008-09-17 19:44:47Z jim $ */ #include diff --git a/src/sdk/loadmodule.c b/src/sdk/loadmodule.c index af400cbc..e057dffd 100644 --- a/src/sdk/loadmodule.c +++ b/src/sdk/loadmodule.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Marcus R. Brown * - * $Id: loadmodule.c 1737 2006-01-22 12:54:08Z tyranid $ */ #include diff --git a/src/sdk/modulemgr_patches.c b/src/sdk/modulemgr_patches.c index 69619dc2..e34dd3e4 100644 --- a/src/sdk/modulemgr_patches.c +++ b/src/sdk/modulemgr_patches.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: modulemgr_patches.c 2166 2007-02-04 10:52:49Z tyranid $ */ #include diff --git a/src/sdk/pspsdk.h b/src/sdk/pspsdk.h index b6c5a24b..4e5bcb16 100644 --- a/src/sdk/pspsdk.h +++ b/src/sdk/pspsdk.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspsdk.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPSDK_H diff --git a/src/sdk/query_mod.c b/src/sdk/query_mod.c index d6c7c244..9cca5157 100644 --- a/src/sdk/query_mod.c +++ b/src/sdk/query_mod.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: query_mod.c 1148 2005-10-12 19:08:27Z tyranid $ */ #include diff --git a/src/sdk/threadutils.c b/src/sdk/threadutils.c index 30a32762..cd1a27b0 100644 --- a/src/sdk/threadutils.c +++ b/src/sdk/threadutils.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus R. Brown * - * $Id: threadutils.c 1658 2006-01-07 15:27:56Z tyranid $ */ #include diff --git a/src/sircs/pspsircs.h b/src/sircs/pspsircs.h index 1b3ea2f9..307e8cf7 100644 --- a/src/sircs/pspsircs.h +++ b/src/sircs/pspsircs.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/startup/crt0.c b/src/startup/crt0.c index 6dbfe0ac..071f740e 100644 --- a/src/startup/crt0.c +++ b/src/startup/crt0.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus R. Brown * - * $Id: crt0.c 1531 2005-12-07 18:27:12Z tyranid $ */ #include diff --git a/src/startup/crt0_prx.c b/src/startup/crt0_prx.c index b2d8ba74..519cacb0 100644 --- a/src/startup/crt0_prx.c +++ b/src/startup/crt0_prx.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus R. Brown * - * $Id: crt0.c 1526 2005-12-06 21:56:06Z tyranid $ */ #include diff --git a/src/startup/prxexports.c b/src/startup/prxexports.c index 8529adf5..a101f0ff 100644 --- a/src/startup/prxexports.c +++ b/src/startup/prxexports.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,8 +7,6 @@ * * Copyright (c) 2005 James F. * - * $Id: pspexports.c 1521 2005-12-04 20:32:16Z tyranid $ - * $HeadURL: svn://tyranid@svn.pspdev.org/psp/trunk/pspsdk/src/startup/pspexports.c $ */ #include #define NULL ((void *) 0) diff --git a/src/umd/pspumd.h b/src/umd/pspumd.h index e21a6b52..225f0166 100644 --- a/src/umd/pspumd.h +++ b/src/umd/pspumd.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspumd.h 2448 2008-12-11 21:45:37Z jim $ */ #ifndef __UMD_H__ #define __UMD_H__ diff --git a/src/umd/sceUmd.S b/src/umd/sceUmd.S old mode 100755 new mode 100644 diff --git a/src/usb/pspusb.h b/src/usb/pspusb.h index bd8ca3c2..14e15e8e 100644 --- a/src/usb/pspusb.h +++ b/src/usb/pspusb.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: pspusb.h 2087 2006-12-04 07:08:01Z loser $ */ #ifndef __PSPUSB_H__ #define __PSPUSB_H__ diff --git a/src/usb/pspusbacc.h b/src/usb/pspusbacc.h old mode 100755 new mode 100644 index e6ce9ce1..29a7a5bc --- a/src/usb/pspusbacc.h +++ b/src/usb/pspusbacc.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,20 +7,19 @@ * * Copyright (c) 2007 dot_blank * - * $Id: pspusbacc.h 2342 2007-12-06 21:49:26Z raphael $ - */ -#ifndef __PSPUSBACC_H__ -#define __PSPUSBACC_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -#define PSP_USBACC_DRIVERNAME "USBAccBaseDriver" - -#ifdef __cplusplus -} -#endif - -#endif - + */ +#ifndef __PSPUSBACC_H__ +#define __PSPUSBACC_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#define PSP_USBACC_DRIVERNAME "USBAccBaseDriver" + +#ifdef __cplusplus +} +#endif + +#endif + diff --git a/src/usb/pspusbbus.h b/src/usb/pspusbbus.h index cb1fb676..533ac929 100644 --- a/src/usb/pspusbbus.h +++ b/src/usb/pspusbbus.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 James F * - * $Id: pspusbbus.h 2219 2007-04-18 19:08:48Z chip $ */ #ifndef __PSPUSBBUS_H__ #define __PSPUSBBUS_H__ diff --git a/src/usb/pspusbcam.h b/src/usb/pspusbcam.h old mode 100755 new mode 100644 index ff767240..c834ce88 --- a/src/usb/pspusbcam.h +++ b/src/usb/pspusbcam.h @@ -1,576 +1,575 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * Licensed under the BSD license, see LICENSE in PSPSDK root for details. - * - * pspusbcam.h - Prototypes for the sceUsbCam library - * - * Copyright (c) 2007 dot_blank - * - * $Id: pspusbcam.h 2433 2008-10-15 10:00:27Z iwn $ - */ -#ifndef __PSPUSBCAM_H__ -#define __PSPUSBCAM_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -#define PSP_USBCAM_PID (0x282) -#define PSP_USBCAM_DRIVERNAME "USBCamDriver" -#define PSP_USBCAMMIC_DRIVERNAME "USBCamMicDriver" - -/** Resolutions for sceUsbCamSetupStill & - sceUsbCamSetupVideo - ** DO NOT use on sceUsbCamSetupStillEx & sceUsbCamSetupVideoEx */ -enum PspUsbCamResolution -{ - PSP_USBCAM_RESOLUTION_160_120 = 0, - PSP_USBCAM_RESOLUTION_176_144 = 1, - PSP_USBCAM_RESOLUTION_320_240 = 2, - PSP_USBCAM_RESOLUTION_352_288 = 3, - PSP_USBCAM_RESOLUTION_640_480 = 4, - PSP_USBCAM_RESOLUTION_1024_768 = 5, - PSP_USBCAM_RESOLUTION_1280_960 = 6, - PSP_USBCAM_RESOLUTION_480_272 = 7, - PSP_USBCAM_RESOLUTION_360_272 = 8, -}; - -/** Resolutions for sceUsbCamSetupStillEx & - sceUsbCamSetupVideoEx - ** DO NOT use on sceUsbCamSetupStill & sceUsbCamSetupVideo */ -enum PspUsbCamResolutionEx -{ - PSP_USBCAM_RESOLUTION_EX_160_120 = 0, - PSP_USBCAM_RESOLUTION_EX_176_144 = 1, - PSP_USBCAM_RESOLUTION_EX_320_240 = 2, - PSP_USBCAM_RESOLUTION_EX_352_288 = 3, - PSP_USBCAM_RESOLUTION_EX_360_272 = 4, - PSP_USBCAM_RESOLUTION_EX_480_272 = 5, - PSP_USBCAM_RESOLUTION_EX_640_480 = 6, - PSP_USBCAM_RESOLUTION_EX_1024_768 = 7, - PSP_USBCAM_RESOLUTION_EX_1280_960 = 8, -}; - -/** Flags for reverse effects. */ -enum PspUsbCamReverseFlags -{ - PSP_USBCAM_FLIP = 1, - PSP_USBCAM_MIRROR = 0x100, -}; - -/** Delay to take pictures */ -enum PspUsbCamDelay -{ - PSP_USBCAM_NODELAY = 0, - PSP_USBCAM_DELAY_10SEC = 1, - PSP_USBCAM_DELAY_20SEC = 2, - PSP_USBCAM_DELAY_30SEC = 3, -}; - -/** Usbcam framerates */ -enum PspUsbCamFrameRate -{ - PSP_USBCAM_FRAMERATE_3_75_FPS = 0, /* 3.75 fps */ - PSP_USBCAM_FRAMERATE_5_FPS = 1, - PSP_USBCAM_FRAMERATE_7_5_FPS = 2, /* 7.5 fps */ - PSP_USBCAM_FRAMERATE_10_FPS = 3, - PSP_USBCAM_FRAMERATE_15_FPS = 4, - PSP_USBCAM_FRAMERATE_20_FPS = 5, - PSP_USBCAM_FRAMERATE_30_FPS = 6, - PSP_USBCAM_FRAMERATE_60_FPS = 7, -}; - -/** White balance values */ -enum PspUsbCamWB -{ - PSP_USBCAM_WB_AUTO = 0, - PSP_USBCAM_WB_DAYLIGHT = 1, - PSP_USBCAM_WB_FLUORESCENT = 2, - PSP_USBCAM_WB_INCADESCENT = 3, -}; - -/** Effect modes */ -enum PspUsbCamEffectMode -{ - PSP_USBCAM_EFFECTMODE_NORMAL = 0, - PSP_USBCAM_EFFECTMODE_NEGATIVE = 1, - PSP_USBCAM_EFFECTMODE_BLACKWHITE = 2, - PSP_USBCAM_EFFECTMODE_SEPIA = 3, - PSP_USBCAM_EFFECTMODE_BLUE = 4, - PSP_USBCAM_EFFECTMODE_RED = 5, - PSP_USBCAM_EFFECTMODE_GREEN = 6, -}; - -/** Exposure levels */ -enum PspUsbCamEVLevel -{ - PSP_USBCAM_EVLEVEL_2_0_POSITIVE = 0, // +2.0 - PSP_USBCAM_EVLEVEL_1_7_POSITIVE = 1, // +1.7 - PSP_USBCAM_EVLEVEL_1_5_POSITIVE = 2, // +1.5 - PSP_USBCAM_EVLEVEL_1_3_POSITIVE = 3, // +1.3 - PSP_USBCAM_EVLEVEL_1_0_POSITIVE = 4, // +1.0 - PSP_USBCAM_EVLEVEL_0_7_POSITIVE = 5, // +0.7 - PSP_USBCAM_EVLEVEL_0_5_POSITIVE = 6, // +0.5 - PSP_USBCAM_EVLEVEL_0_3_POSITIVE = 7, // +0.3 - PSP_USBCAM_EVLEVEL_0_0 = 8, // 0.0 - PSP_USBCAM_EVLEVEL_0_3_NEGATIVE = 9, // -0.3 - PSP_USBCAM_EVLEVEL_0_5_NEGATIVE = 10, // -0.5 - PSP_USBCAM_EVLEVEL_0_7_NEGATIVE = 11, // -0.7 - PSP_USBCAM_EVLEVEL_1_0_NEGATIVE = 12, // -1.0 - PSP_USBCAM_EVLEVEL_1_3_NEGATIVE = 13, // -1.3 - PSP_USBCAM_EVLEVEL_1_5_NEGATIVE = 14, // -1.5 - PSP_USBCAM_EVLEVEL_1_7_NEGATIVE = 15, // -1.7 - PSP_USBCAM_EVLEVEL_2_0_NEGATIVE = 16, // -2.0 -}; - - - -/** Structure for sceUsbCamSetupStill */ -typedef struct PspUsbCamSetupStillParam { -/** Size of the ::PspUsbCamSetupStillParam structure */ - int size; -/** Resolution. One of ::PspUsbCamResolution */ - int resolution; -/** Size of the jpeg image */ - int jpegsize; -/** Reverse effect to apply. Zero or more of ::PspUsbCamReverseFlags */ - int reverseflags; -/** Delay to apply to take the picture. One of ::PspUsbCamDelay */ - int delay; -/** JPEG compression level, a value from 1-63. - 1 -> less compression, better quality; 63 -> max compression, worse quality */ - int complevel; -} PspUsbCamSetupStillParam; - -/** Structure for sceUsbCamSetupStillEx */ -typedef struct PspUsbCamSetupStillExParam { -/** Size of the ::PspUsbCamSetupStillExParam structure */ - int size; -/** Unknown, set it to 9 at the moment. */ - u32 unk; -/** Resolution. One of ::PspUsbCamResolutionEx */ - int resolution; -/** Size of the jpeg image */ - int jpegsize; -/** JPEG compression level, a value from 1-63. - 1 -> less compression, better quality; 63 -> max compression, worse quality */ - int complevel; -/** Unknown, set it to 0 at the moment */ - u32 unk2; -/** Unknown, set it to 1 at the moment */ - u32 unk3; -/** Flag that indicates whether to flip the image */ - int flip; -/** Flag that indicates whether to mirror the image */ - int mirror; -/** Delay to apply to take the picture. One of ::PspUsbCamDelay */ - int delay; -/** Unknown, set it to 0 at the moment */ - u32 unk4[5]; -} PspUsbCamSetupStillExParam; - -typedef struct PspUsbCamSetupVideoParam { -/** Size of the ::PspUsbCamSetupVideoParam structure */ - int size; -/** Resolution. One of ::PspUsbCamResolution */ - int resolution; -/** Framerate. One of ::PspUsbCamFrameRate */ - int framerate; -/** White balance. One of ::PspUsbCamWB */ - int wb; -/** Saturarion (0-255) */ - int saturation; -/** Brightness (0-255) */ - int brightness; -/** Contrast (0-255) */ - int contrast; -/** Sharpness (0-255) */ - int sharpness; -/** Effect mode. One of ::PspUsbCamEffectMode */ - int effectmode; -/** Size of jpeg video frame */ - int framesize; -/** Unknown. Set it to 0 at the moment. */ - u32 unk; -/** Exposure value. One of ::PspUsbCamEVLevel */ - int evlevel; -} PspUsbCamSetupVideoParam; - -typedef struct PspUsbCamSetupVideoExParam { -/** Size of the ::PspUsbCamSetupVideoParam structure */ - int size; -/* Unknown. Set it to 9 at the moment. */ - u32 unk; -/** Resolution. One of ::PspUsbCamResolutionEx */ - int resolution; -/** Framerate. One of ::PspUsbCamFrameRate */ - int framerate; -/** Unknown. Set it to 2 at the moment */ - u32 unk2; -/** Unknown. Set it to 3 at the moment */ - u32 unk3; -/** White balance. One of ::PspUsbCamWB */ - int wb; -/** Saturarion (0-255) */ - int saturation; -/** Brightness (0-255) */ - int brightness; -/** Contrast (0-255) */ - int contrast; -/** Sharpness (0-255) */ - int sharpness; -/** Unknown. Set it to 0 at the moment */ - u32 unk4; -/** Unknown. Set it to 1 at the moment */ - u32 unk5; -/** Unknown. Set it to 0 at the moment */ - u32 unk6[3]; -/** Effect mode. One of ::PspUsbCamEffectMode */ - int effectmode; -/** Unknown. Set it to 1 at the moment */ - u32 unk7; -/** Unknown. Set it to 10 at the moment */ - u32 unk8; -/** Unknown. Set it to 2 at the moment */ - u32 unk9; -/** Unknown. Set it to 500 at the moment */ - u32 unk10; -/** Unknown. Set it to 1000 at the moment */ - u32 unk11; -/** Size of jpeg video frame */ - int framesize; -/** Unknown. Set it to 0 at the moment */ - u32 unk12; -/** Exposure value. One of ::PspUsbCamEVLevel */ - int evlevel; -} PspUsbCamSetupVideoExParam; - -/** - * Setups the parameters to take a still image. - * - * @param param - pointer to a ::PspUsbCamSetupStillParam - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetupStill(PspUsbCamSetupStillParam *param); - -/** - * Setups the parameters to take a still image (with more options) - * - * @param param - pointer to a ::PspUsbCamSetupStillExParam - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetupStillEx(PspUsbCamSetupStillExParam *param); - -/** - * Gets a still image. The function doesn't return until the image - * has been acquired. - * - * @param buf - The buffer that receives the image jpeg data - * @param size - The size of the buffer. - * - * @return size of acquired image on success, < 0 on error -*/ -int sceUsbCamStillInputBlocking(u8 *buf, SceSize size); - -/** - * Gets a still image. The function returns inmediately, and - * the completion has to be handled by calling ::sceUsbCamStillWaitInputEnd - * or ::sceUsbCamStillPollInputEnd. - * - * @param buf - The buffer that receives the image jpeg data - * @param size - The size of the buffer. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamStillInput(u8 *buf, SceSize size); - -/** - * Waits untils still input has been finished. - * - * @return the size of the acquired image on sucess, < 0 on error -*/ -int sceUsbCamStillWaitInputEnd(void); - -/** - * Polls the status of still input completion. - * - * @return the size of the acquired image if still input has ended, - * 0 if the input has not ended, < 0 on error. -*/ -int sceUsbCamStillPollInputEnd(void); - -/** - * Cancels the still input. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamStillCancelInput(void); - -/** - * Gets the size of the acquired still image. - * - * @return the size of the acquired image on success, < 0 on error -*/ -int sceUsbCamStillGetInputLength(void); - -/** - * Set ups the parameters for video capture. - * - * @param param - Pointer to a ::PspUsbCamSetupVideoParam structure. - * @param workarea - Pointer to a buffer used as work area by the driver. - * @param wasize - Size of the work area. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetupVideo(PspUsbCamSetupVideoParam *param, void *workarea, int wasize); - -/** - * Set ups the parameters for video capture (with more options) - * - * @param param - Pointer to a ::PspUsbCamSetupVideoExParam structure. - * @param workarea - Pointer to a buffer used as work area by the driver. - * @param wasize - Size of the work area. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetupVideoEx(PspUsbCamSetupVideoExParam *param, void *workarea, int wasize); - -/** - * Starts video input from the camera. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamStartVideo(void); - -/** - * Stops video input from the camera. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamStopVideo(void); - -/** - * Reads a video frame. The function doesn't return until the frame - * has been acquired. - * - * @param buf - The buffer that receives the frame jpeg data - * @param size - The size of the buffer. - * - * @return size of acquired frame on success, < 0 on error -*/ -int sceUsbCamReadVideoFrameBlocking(u8 *buf, SceSize size); - -/** - * Reads a video frame. The function returns inmediately, and - * the completion has to be handled by calling ::sceUsbCamWaitReadVideoFrameEnd - * or ::sceUsbCamPollReadVideoFrameEnd. - * - * @param buf - The buffer that receives the frame jpeg data - * @param size - The size of the buffer. - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamReadVideoFrame(u8 *buf, SceSize size); - -/** - * Waits untils the current frame has been read. - * - * @return the size of the acquired frame on sucess, < 0 on error -*/ -int sceUsbCamWaitReadVideoFrameEnd(void); - -/** - * Polls the status of video frame read completion. - * - * @return the size of the acquired frame if it has been read, - * 0 if the frame has not yet been read, < 0 on error. -*/ -int sceUsbCamPollReadVideoFrameEnd(void); - -/** - * Gets the size of the acquired frame. - * - * @return the size of the acquired frame on success, < 0 on error -*/ -int sceUsbCamGetReadVideoFrameSize(void); - -/** - * Sets the saturation - * - * @param saturation - The saturation (0-255) - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetSaturation(int saturation); - -/** - * Sets the brightness - * - * @param brightness - The brightness (0-255) - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetBrightness(int brightness); - -/** - * Sets the contrast - * - * @param contrast - The contrast (0-255) - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetContrast(int contrast); - -/** - * Sets the sharpness - * - * @param sharpness - The sharpness (0-255) - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetSharpness(int sharpness); - -/** - * Sets the image effect mode - * - * @param effectmode - The effect mode, one of ::PspUsbCamEffectMode - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetImageEffectMode(int effectmode); - -/** - * Sets the exposure level - * - * @param ev - The exposure level, one of ::PspUsbCamEVLevel - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetEvLevel(int ev); - -/** - * Sets the reverse mode - * - * @param reverseflags - The reverse flags, zero or more of ::PspUsbCamReverseFlags - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamSetReverseMode(int reverseflags); - -/** - * Sets the zoom. - * - * @param zoom - The zoom level starting by 10. (10 = 1X, 11 = 1.1X, etc) - * - * @returns 0 on success, < 0 on error -*/ -int sceUsbCamSetZoom(int zoom); - -/** - * Gets the current saturation - * - * @param saturation - pointer to a variable that receives the current saturation - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetSaturation(int *saturation); - -/** - * Gets the current brightness - * - * @param brightness - pointer to a variable that receives the current brightness - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetBrightness(int *brightness); - -/** - * Gets the current contrast - * - * @param contrast - pointer to a variable that receives the current contrast - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetContrast(int *contrast); - -/** - * Gets the current sharpness - * - * @param sharpness - pointer to a variable that receives the current sharpness - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetSharpness(int *sharpness); - -/** - * Gets the current image efect mode - * - * @param effectmode - pointer to a variable that receives the current effect mode - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetImageEffectMode(int *effectmode); - -/** - * Gets the current exposure level. - * - * @param ev - pointer to a variable that receives the current exposure level - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetEvLevel(int *ev); - -/** - * Gets the current reverse mode. - * - * @param reverseflags - pointer to a variable that receives the current reverse mode flags - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetReverseMode(int *reverseflags); - -/** - * Gets the current zoom. - * - * @param zoom - pointer to a variable that receives the current zoom - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamGetZoom(int *zoom); - -/** - * Sets if the image should be automatically reversed, depending of the position - * of the camera. - * - * @param on - 1 to set the automatical reversal of the image, 0 to set it off - * - * @return 0 on success, < 0 on error -*/ -int sceUsbCamAutoImageReverseSW(int on); - -/** - * Gets the state of the autoreversal of the image. - * - * @return 1 if it is set to automatic, 0 otherwise -*/ -int sceUsbCamGetAutoImageReverseState(void); - -/** - * Gets the direction of the camera lens - * - * @return 1 if the camera is "looking to you", 0 if the camera - * is "looking to the other side". -*/ -int sceUsbCamGetLensDirection(void); - -#ifdef __cplusplus -} -#endif - -#endif - - - +/* + * PSP Software Development Kit - https://github.com/pspdev + * ----------------------------------------------------------------------- + * Licensed under the BSD license, see LICENSE in PSPSDK root for details. + * + * pspusbcam.h - Prototypes for the sceUsbCam library + * + * Copyright (c) 2007 dot_blank + * + */ +#ifndef __PSPUSBCAM_H__ +#define __PSPUSBCAM_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#define PSP_USBCAM_PID (0x282) +#define PSP_USBCAM_DRIVERNAME "USBCamDriver" +#define PSP_USBCAMMIC_DRIVERNAME "USBCamMicDriver" + +/** Resolutions for sceUsbCamSetupStill & + sceUsbCamSetupVideo + ** DO NOT use on sceUsbCamSetupStillEx & sceUsbCamSetupVideoEx */ +enum PspUsbCamResolution +{ + PSP_USBCAM_RESOLUTION_160_120 = 0, + PSP_USBCAM_RESOLUTION_176_144 = 1, + PSP_USBCAM_RESOLUTION_320_240 = 2, + PSP_USBCAM_RESOLUTION_352_288 = 3, + PSP_USBCAM_RESOLUTION_640_480 = 4, + PSP_USBCAM_RESOLUTION_1024_768 = 5, + PSP_USBCAM_RESOLUTION_1280_960 = 6, + PSP_USBCAM_RESOLUTION_480_272 = 7, + PSP_USBCAM_RESOLUTION_360_272 = 8, +}; + +/** Resolutions for sceUsbCamSetupStillEx & + sceUsbCamSetupVideoEx + ** DO NOT use on sceUsbCamSetupStill & sceUsbCamSetupVideo */ +enum PspUsbCamResolutionEx +{ + PSP_USBCAM_RESOLUTION_EX_160_120 = 0, + PSP_USBCAM_RESOLUTION_EX_176_144 = 1, + PSP_USBCAM_RESOLUTION_EX_320_240 = 2, + PSP_USBCAM_RESOLUTION_EX_352_288 = 3, + PSP_USBCAM_RESOLUTION_EX_360_272 = 4, + PSP_USBCAM_RESOLUTION_EX_480_272 = 5, + PSP_USBCAM_RESOLUTION_EX_640_480 = 6, + PSP_USBCAM_RESOLUTION_EX_1024_768 = 7, + PSP_USBCAM_RESOLUTION_EX_1280_960 = 8, +}; + +/** Flags for reverse effects. */ +enum PspUsbCamReverseFlags +{ + PSP_USBCAM_FLIP = 1, + PSP_USBCAM_MIRROR = 0x100, +}; + +/** Delay to take pictures */ +enum PspUsbCamDelay +{ + PSP_USBCAM_NODELAY = 0, + PSP_USBCAM_DELAY_10SEC = 1, + PSP_USBCAM_DELAY_20SEC = 2, + PSP_USBCAM_DELAY_30SEC = 3, +}; + +/** Usbcam framerates */ +enum PspUsbCamFrameRate +{ + PSP_USBCAM_FRAMERATE_3_75_FPS = 0, /* 3.75 fps */ + PSP_USBCAM_FRAMERATE_5_FPS = 1, + PSP_USBCAM_FRAMERATE_7_5_FPS = 2, /* 7.5 fps */ + PSP_USBCAM_FRAMERATE_10_FPS = 3, + PSP_USBCAM_FRAMERATE_15_FPS = 4, + PSP_USBCAM_FRAMERATE_20_FPS = 5, + PSP_USBCAM_FRAMERATE_30_FPS = 6, + PSP_USBCAM_FRAMERATE_60_FPS = 7, +}; + +/** White balance values */ +enum PspUsbCamWB +{ + PSP_USBCAM_WB_AUTO = 0, + PSP_USBCAM_WB_DAYLIGHT = 1, + PSP_USBCAM_WB_FLUORESCENT = 2, + PSP_USBCAM_WB_INCADESCENT = 3, +}; + +/** Effect modes */ +enum PspUsbCamEffectMode +{ + PSP_USBCAM_EFFECTMODE_NORMAL = 0, + PSP_USBCAM_EFFECTMODE_NEGATIVE = 1, + PSP_USBCAM_EFFECTMODE_BLACKWHITE = 2, + PSP_USBCAM_EFFECTMODE_SEPIA = 3, + PSP_USBCAM_EFFECTMODE_BLUE = 4, + PSP_USBCAM_EFFECTMODE_RED = 5, + PSP_USBCAM_EFFECTMODE_GREEN = 6, +}; + +/** Exposure levels */ +enum PspUsbCamEVLevel +{ + PSP_USBCAM_EVLEVEL_2_0_POSITIVE = 0, // +2.0 + PSP_USBCAM_EVLEVEL_1_7_POSITIVE = 1, // +1.7 + PSP_USBCAM_EVLEVEL_1_5_POSITIVE = 2, // +1.5 + PSP_USBCAM_EVLEVEL_1_3_POSITIVE = 3, // +1.3 + PSP_USBCAM_EVLEVEL_1_0_POSITIVE = 4, // +1.0 + PSP_USBCAM_EVLEVEL_0_7_POSITIVE = 5, // +0.7 + PSP_USBCAM_EVLEVEL_0_5_POSITIVE = 6, // +0.5 + PSP_USBCAM_EVLEVEL_0_3_POSITIVE = 7, // +0.3 + PSP_USBCAM_EVLEVEL_0_0 = 8, // 0.0 + PSP_USBCAM_EVLEVEL_0_3_NEGATIVE = 9, // -0.3 + PSP_USBCAM_EVLEVEL_0_5_NEGATIVE = 10, // -0.5 + PSP_USBCAM_EVLEVEL_0_7_NEGATIVE = 11, // -0.7 + PSP_USBCAM_EVLEVEL_1_0_NEGATIVE = 12, // -1.0 + PSP_USBCAM_EVLEVEL_1_3_NEGATIVE = 13, // -1.3 + PSP_USBCAM_EVLEVEL_1_5_NEGATIVE = 14, // -1.5 + PSP_USBCAM_EVLEVEL_1_7_NEGATIVE = 15, // -1.7 + PSP_USBCAM_EVLEVEL_2_0_NEGATIVE = 16, // -2.0 +}; + + + +/** Structure for sceUsbCamSetupStill */ +typedef struct PspUsbCamSetupStillParam { +/** Size of the ::PspUsbCamSetupStillParam structure */ + int size; +/** Resolution. One of ::PspUsbCamResolution */ + int resolution; +/** Size of the jpeg image */ + int jpegsize; +/** Reverse effect to apply. Zero or more of ::PspUsbCamReverseFlags */ + int reverseflags; +/** Delay to apply to take the picture. One of ::PspUsbCamDelay */ + int delay; +/** JPEG compression level, a value from 1-63. + 1 -> less compression, better quality; 63 -> max compression, worse quality */ + int complevel; +} PspUsbCamSetupStillParam; + +/** Structure for sceUsbCamSetupStillEx */ +typedef struct PspUsbCamSetupStillExParam { +/** Size of the ::PspUsbCamSetupStillExParam structure */ + int size; +/** Unknown, set it to 9 at the moment. */ + u32 unk; +/** Resolution. One of ::PspUsbCamResolutionEx */ + int resolution; +/** Size of the jpeg image */ + int jpegsize; +/** JPEG compression level, a value from 1-63. + 1 -> less compression, better quality; 63 -> max compression, worse quality */ + int complevel; +/** Unknown, set it to 0 at the moment */ + u32 unk2; +/** Unknown, set it to 1 at the moment */ + u32 unk3; +/** Flag that indicates whether to flip the image */ + int flip; +/** Flag that indicates whether to mirror the image */ + int mirror; +/** Delay to apply to take the picture. One of ::PspUsbCamDelay */ + int delay; +/** Unknown, set it to 0 at the moment */ + u32 unk4[5]; +} PspUsbCamSetupStillExParam; + +typedef struct PspUsbCamSetupVideoParam { +/** Size of the ::PspUsbCamSetupVideoParam structure */ + int size; +/** Resolution. One of ::PspUsbCamResolution */ + int resolution; +/** Framerate. One of ::PspUsbCamFrameRate */ + int framerate; +/** White balance. One of ::PspUsbCamWB */ + int wb; +/** Saturarion (0-255) */ + int saturation; +/** Brightness (0-255) */ + int brightness; +/** Contrast (0-255) */ + int contrast; +/** Sharpness (0-255) */ + int sharpness; +/** Effect mode. One of ::PspUsbCamEffectMode */ + int effectmode; +/** Size of jpeg video frame */ + int framesize; +/** Unknown. Set it to 0 at the moment. */ + u32 unk; +/** Exposure value. One of ::PspUsbCamEVLevel */ + int evlevel; +} PspUsbCamSetupVideoParam; + +typedef struct PspUsbCamSetupVideoExParam { +/** Size of the ::PspUsbCamSetupVideoParam structure */ + int size; +/* Unknown. Set it to 9 at the moment. */ + u32 unk; +/** Resolution. One of ::PspUsbCamResolutionEx */ + int resolution; +/** Framerate. One of ::PspUsbCamFrameRate */ + int framerate; +/** Unknown. Set it to 2 at the moment */ + u32 unk2; +/** Unknown. Set it to 3 at the moment */ + u32 unk3; +/** White balance. One of ::PspUsbCamWB */ + int wb; +/** Saturarion (0-255) */ + int saturation; +/** Brightness (0-255) */ + int brightness; +/** Contrast (0-255) */ + int contrast; +/** Sharpness (0-255) */ + int sharpness; +/** Unknown. Set it to 0 at the moment */ + u32 unk4; +/** Unknown. Set it to 1 at the moment */ + u32 unk5; +/** Unknown. Set it to 0 at the moment */ + u32 unk6[3]; +/** Effect mode. One of ::PspUsbCamEffectMode */ + int effectmode; +/** Unknown. Set it to 1 at the moment */ + u32 unk7; +/** Unknown. Set it to 10 at the moment */ + u32 unk8; +/** Unknown. Set it to 2 at the moment */ + u32 unk9; +/** Unknown. Set it to 500 at the moment */ + u32 unk10; +/** Unknown. Set it to 1000 at the moment */ + u32 unk11; +/** Size of jpeg video frame */ + int framesize; +/** Unknown. Set it to 0 at the moment */ + u32 unk12; +/** Exposure value. One of ::PspUsbCamEVLevel */ + int evlevel; +} PspUsbCamSetupVideoExParam; + +/** + * Setups the parameters to take a still image. + * + * @param param - pointer to a ::PspUsbCamSetupStillParam + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetupStill(PspUsbCamSetupStillParam *param); + +/** + * Setups the parameters to take a still image (with more options) + * + * @param param - pointer to a ::PspUsbCamSetupStillExParam + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetupStillEx(PspUsbCamSetupStillExParam *param); + +/** + * Gets a still image. The function doesn't return until the image + * has been acquired. + * + * @param buf - The buffer that receives the image jpeg data + * @param size - The size of the buffer. + * + * @return size of acquired image on success, < 0 on error +*/ +int sceUsbCamStillInputBlocking(u8 *buf, SceSize size); + +/** + * Gets a still image. The function returns inmediately, and + * the completion has to be handled by calling ::sceUsbCamStillWaitInputEnd + * or ::sceUsbCamStillPollInputEnd. + * + * @param buf - The buffer that receives the image jpeg data + * @param size - The size of the buffer. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamStillInput(u8 *buf, SceSize size); + +/** + * Waits untils still input has been finished. + * + * @return the size of the acquired image on sucess, < 0 on error +*/ +int sceUsbCamStillWaitInputEnd(void); + +/** + * Polls the status of still input completion. + * + * @return the size of the acquired image if still input has ended, + * 0 if the input has not ended, < 0 on error. +*/ +int sceUsbCamStillPollInputEnd(void); + +/** + * Cancels the still input. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamStillCancelInput(void); + +/** + * Gets the size of the acquired still image. + * + * @return the size of the acquired image on success, < 0 on error +*/ +int sceUsbCamStillGetInputLength(void); + +/** + * Set ups the parameters for video capture. + * + * @param param - Pointer to a ::PspUsbCamSetupVideoParam structure. + * @param workarea - Pointer to a buffer used as work area by the driver. + * @param wasize - Size of the work area. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetupVideo(PspUsbCamSetupVideoParam *param, void *workarea, int wasize); + +/** + * Set ups the parameters for video capture (with more options) + * + * @param param - Pointer to a ::PspUsbCamSetupVideoExParam structure. + * @param workarea - Pointer to a buffer used as work area by the driver. + * @param wasize - Size of the work area. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetupVideoEx(PspUsbCamSetupVideoExParam *param, void *workarea, int wasize); + +/** + * Starts video input from the camera. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamStartVideo(void); + +/** + * Stops video input from the camera. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamStopVideo(void); + +/** + * Reads a video frame. The function doesn't return until the frame + * has been acquired. + * + * @param buf - The buffer that receives the frame jpeg data + * @param size - The size of the buffer. + * + * @return size of acquired frame on success, < 0 on error +*/ +int sceUsbCamReadVideoFrameBlocking(u8 *buf, SceSize size); + +/** + * Reads a video frame. The function returns inmediately, and + * the completion has to be handled by calling ::sceUsbCamWaitReadVideoFrameEnd + * or ::sceUsbCamPollReadVideoFrameEnd. + * + * @param buf - The buffer that receives the frame jpeg data + * @param size - The size of the buffer. + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamReadVideoFrame(u8 *buf, SceSize size); + +/** + * Waits untils the current frame has been read. + * + * @return the size of the acquired frame on sucess, < 0 on error +*/ +int sceUsbCamWaitReadVideoFrameEnd(void); + +/** + * Polls the status of video frame read completion. + * + * @return the size of the acquired frame if it has been read, + * 0 if the frame has not yet been read, < 0 on error. +*/ +int sceUsbCamPollReadVideoFrameEnd(void); + +/** + * Gets the size of the acquired frame. + * + * @return the size of the acquired frame on success, < 0 on error +*/ +int sceUsbCamGetReadVideoFrameSize(void); + +/** + * Sets the saturation + * + * @param saturation - The saturation (0-255) + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetSaturation(int saturation); + +/** + * Sets the brightness + * + * @param brightness - The brightness (0-255) + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetBrightness(int brightness); + +/** + * Sets the contrast + * + * @param contrast - The contrast (0-255) + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetContrast(int contrast); + +/** + * Sets the sharpness + * + * @param sharpness - The sharpness (0-255) + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetSharpness(int sharpness); + +/** + * Sets the image effect mode + * + * @param effectmode - The effect mode, one of ::PspUsbCamEffectMode + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetImageEffectMode(int effectmode); + +/** + * Sets the exposure level + * + * @param ev - The exposure level, one of ::PspUsbCamEVLevel + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetEvLevel(int ev); + +/** + * Sets the reverse mode + * + * @param reverseflags - The reverse flags, zero or more of ::PspUsbCamReverseFlags + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamSetReverseMode(int reverseflags); + +/** + * Sets the zoom. + * + * @param zoom - The zoom level starting by 10. (10 = 1X, 11 = 1.1X, etc) + * + * @returns 0 on success, < 0 on error +*/ +int sceUsbCamSetZoom(int zoom); + +/** + * Gets the current saturation + * + * @param saturation - pointer to a variable that receives the current saturation + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetSaturation(int *saturation); + +/** + * Gets the current brightness + * + * @param brightness - pointer to a variable that receives the current brightness + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetBrightness(int *brightness); + +/** + * Gets the current contrast + * + * @param contrast - pointer to a variable that receives the current contrast + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetContrast(int *contrast); + +/** + * Gets the current sharpness + * + * @param sharpness - pointer to a variable that receives the current sharpness + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetSharpness(int *sharpness); + +/** + * Gets the current image efect mode + * + * @param effectmode - pointer to a variable that receives the current effect mode + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetImageEffectMode(int *effectmode); + +/** + * Gets the current exposure level. + * + * @param ev - pointer to a variable that receives the current exposure level + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetEvLevel(int *ev); + +/** + * Gets the current reverse mode. + * + * @param reverseflags - pointer to a variable that receives the current reverse mode flags + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetReverseMode(int *reverseflags); + +/** + * Gets the current zoom. + * + * @param zoom - pointer to a variable that receives the current zoom + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamGetZoom(int *zoom); + +/** + * Sets if the image should be automatically reversed, depending of the position + * of the camera. + * + * @param on - 1 to set the automatical reversal of the image, 0 to set it off + * + * @return 0 on success, < 0 on error +*/ +int sceUsbCamAutoImageReverseSW(int on); + +/** + * Gets the state of the autoreversal of the image. + * + * @return 1 if it is set to automatic, 0 otherwise +*/ +int sceUsbCamGetAutoImageReverseState(void); + +/** + * Gets the direction of the camera lens + * + * @return 1 if the camera is "looking to you", 0 if the camera + * is "looking to the other side". +*/ +int sceUsbCamGetLensDirection(void); + +#ifdef __cplusplus +} +#endif + +#endif + + + diff --git a/src/usb/sceUsbCam.S b/src/usb/sceUsbCam.S old mode 100755 new mode 100644 diff --git a/src/usbstor/pspusbstor.h b/src/usbstor/pspusbstor.h index f71fd914..d5d97ebb 100644 --- a/src/usbstor/pspusbstor.h +++ b/src/usbstor/pspusbstor.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: pspusbstor.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __PSPUSBSTOR_H__ #define __PSPUSBSTOR_H__ diff --git a/src/user/pspintrman.c b/src/user/pspintrman.c index d6c7867c..46acd814 100644 --- a/src/user/pspintrman.c +++ b/src/user/pspintrman.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 James F. (tyranid@gmail.com) * Copyright (c) 2005 Florin Sasu (...) * - * $Id: pspintrman.c 1207 2005-10-23 05:50:29Z mrbrown $ */ #include diff --git a/src/user/pspintrman.h b/src/user/pspintrman.h index 19abdf14..ded882b1 100644 --- a/src/user/pspintrman.h +++ b/src/user/pspintrman.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 James F. (tyranid@gmail.com) * Copyright (c) 2005 Florin Sasu (...) * - * $Id: pspintrman.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPINTRMAN_H diff --git a/src/user/pspiofilemgr.h b/src/user/pspiofilemgr.h index 3490d84a..20daeef0 100644 --- a/src/user/pspiofilemgr.h +++ b/src/user/pspiofilemgr.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspiofilemgr.h 1884 2006-04-30 08:55:54Z chip $ */ #ifndef __FILEIO_H__ #define __FILEIO_H__ diff --git a/src/user/pspiofilemgr_dirent.h b/src/user/pspiofilemgr_dirent.h index 3b29806e..f1f9339b 100644 --- a/src/user/pspiofilemgr_dirent.h +++ b/src/user/pspiofilemgr_dirent.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspiofilemgr_dirent.h 1172 2005-10-20 09:08:04Z jim $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/user/pspiofilemgr_fcntl.h b/src/user/pspiofilemgr_fcntl.h index 445bf0a8..6ee57c87 100644 --- a/src/user/pspiofilemgr_fcntl.h +++ b/src/user/pspiofilemgr_fcntl.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspiofilemgr_fcntl.h 559 2005-07-09 08:47:52Z mrbrown $ */ #ifndef PSPIOFILEMGR_FCNTL_H #define PSPIOFILEMGR_FCNTL_H diff --git a/src/user/pspiofilemgr_stat.h b/src/user/pspiofilemgr_stat.h index 746dcfbd..6e1028ac 100644 --- a/src/user/pspiofilemgr_stat.h +++ b/src/user/pspiofilemgr_stat.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspiofilemgr_stat.h 1095 2005-09-27 21:02:16Z jim $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/user/pspkerneltypes.h b/src/user/pspkerneltypes.h index 81c77bee..16516ba0 100644 --- a/src/user/pspkerneltypes.h +++ b/src/user/pspkerneltypes.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * 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 diff --git a/src/user/pspkerror.h b/src/user/pspkerror.h index b4f755e7..ec43e45d 100644 --- a/src/user/pspkerror.h +++ b/src/user/pspkerror.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspkerror.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef PSPKERROR_H #define PSPKERROR_H diff --git a/src/user/psploadexec.h b/src/user/psploadexec.h index 1325744b..9eb5ae69 100644 --- a/src/user/psploadexec.h +++ b/src/user/psploadexec.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: psploadexec.h 835 2005-08-09 05:41:25Z tyranid $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/user/pspmoduleexport.h b/src/user/pspmoduleexport.h index 36a77c26..b5978317 100644 --- a/src/user/pspmoduleexport.h +++ b/src/user/pspmoduleexport.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspmoduleexport.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef PSP_MODEXPORT_H_ diff --git a/src/user/pspmoduleinfo.h b/src/user/pspmoduleinfo.h index 2976d9a0..5d72837e 100644 --- a/src/user/pspmoduleinfo.h +++ b/src/user/pspmoduleinfo.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspmoduleinfo.h 2434 2008-10-15 17:37:25Z iwn $ */ #ifndef PSPMODULEINFO_H #define PSPMODULEINFO_H diff --git a/src/user/pspmodulemgr.h b/src/user/pspmodulemgr.h index aa24f2da..ea12991e 100644 --- a/src/user/pspmodulemgr.h +++ b/src/user/pspmodulemgr.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspmodulemgr.h 2433 2008-10-15 10:00:27Z iwn $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/user/pspmscm.h b/src/user/pspmscm.h index ea3ebde9..69ed5b41 100644 --- a/src/user/pspmscm.h +++ b/src/user/pspmscm.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 Adrahil * - * $Id: pspmscm.h 2005 2006-09-17 21:36:52Z tyranid $ */ #ifndef PSPMSCM_H #define PSPMSCM_H diff --git a/src/user/pspstdio.h b/src/user/pspstdio.h index e5486206..c8f108bb 100644 --- a/src/user/pspstdio.h +++ b/src/user/pspstdio.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspstdio.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __PSPSTDIO_H__ #define __PSPSTDIO_H__ diff --git a/src/user/pspsuspend.h b/src/user/pspsuspend.h index 8c438e38..31e99133 100644 --- a/src/user/pspsuspend.h +++ b/src/user/pspsuspend.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2006 James F * - * $Id */ #ifndef __PSPSUSPEND_H__ diff --git a/src/user/pspsysmem.h b/src/user/pspsysmem.h index 308d71f0..ee332843 100644 --- a/src/user/pspsysmem.h +++ b/src/user/pspsysmem.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Marcus R. Brown * - * $Id: pspsysmem.h 2433 2008-10-15 10:00:27Z iwn $ */ /* Note: Some of the structures, types, and definitions in this file were diff --git a/src/user/pspthreadman.h b/src/user/pspthreadman.h index 7c69d500..9bbef979 100644 --- a/src/user/pspthreadman.h +++ b/src/user/pspthreadman.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -10,7 +10,6 @@ * Copyright (c) 2005 John Kelley * Copyright (c) 2005 Florin Sasu * - * $Id: pspthreadman.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __THREADMAN_H__ #define __THREADMAN_H__ diff --git a/src/user/pspuser.h b/src/user/pspuser.h index a5ebf922..3c9651b2 100644 --- a/src/user/pspuser.h +++ b/src/user/pspuser.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: pspuser.h 1207 2005-10-23 05:50:29Z mrbrown $ */ #ifndef PSPUSER_H diff --git a/src/user/psputils.h b/src/user/psputils.h index c59b8cea..c8792577 100644 --- a/src/user/psputils.h +++ b/src/user/psputils.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * - * $Id: psputils.h 1884 2006-04-30 08:55:54Z chip $ */ #ifndef __UTILS_H__ #define __UTILS_H__ diff --git a/src/utility/psputility.h b/src/utility/psputility.h index bb52f739..3d60e250 100644 --- a/src/utility/psputility.h +++ b/src/utility/psputility.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psputility.h 2387 2008-05-04 17:15:32Z iwn $ */ #ifndef __PSPUTILITY_H__ #define __PSPUTILITY_H__ diff --git a/src/utility/psputility_avmodules.h b/src/utility/psputility_avmodules.h old mode 100755 new mode 100644 index 795a98dc..01fb928b --- a/src/utility/psputility_avmodules.h +++ b/src/utility/psputility_avmodules.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/utility/psputility_gamesharing.h b/src/utility/psputility_gamesharing.h index 9b46d786..28b91fe0 100644 --- a/src/utility/psputility_gamesharing.h +++ b/src/utility/psputility_gamesharing.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/utility/psputility_htmlviewer.h b/src/utility/psputility_htmlviewer.h index 0f960a08..5e36def0 100644 --- a/src/utility/psputility_htmlviewer.h +++ b/src/utility/psputility_htmlviewer.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/utility/psputility_modules.h b/src/utility/psputility_modules.h old mode 100755 new mode 100644 index 5749c287..086cad8a --- a/src/utility/psputility_modules.h +++ b/src/utility/psputility_modules.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * diff --git a/src/utility/psputility_msgdialog.h b/src/utility/psputility_msgdialog.h index 6b2e342a..6279572c 100644 --- a/src/utility/psputility_msgdialog.h +++ b/src/utility/psputility_msgdialog.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2005 Marcus Comstedt * (c) 2008 InsertWittyName * - * $Id: psputility_msgdialog.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPUTILITY_DIALOGS_H__ #define __PSPUTILITY_DIALOGS_H__ diff --git a/src/utility/psputility_netconf.h b/src/utility/psputility_netconf.h index 280d16f9..460f851a 100644 --- a/src/utility/psputility_netconf.h +++ b/src/utility/psputility_netconf.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psputility_netconf.h 2363 2008-02-16 19:40:17Z iwn $ */ #ifndef __PSPUTILITY_NETCONF_H__ #define __PSPUTILITY_NETCONF_H__ diff --git a/src/utility/psputility_netmodules.h b/src/utility/psputility_netmodules.h index a7bc6adb..3f9f3b02 100644 --- a/src/utility/psputility_netmodules.h +++ b/src/utility/psputility_netmodules.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psputility_netmodules.h 2002 2006-09-16 16:49:57Z jim $ */ #ifndef __PSPUTILITY_NETMODULES_H__ #define __PSPUTILITY_NETMODULES_H__ diff --git a/src/utility/psputility_netparam.h b/src/utility/psputility_netparam.h index 3ccae917..d45405b5 100644 --- a/src/utility/psputility_netparam.h +++ b/src/utility/psputility_netparam.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psputility_netparam.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPUTILITY_NETPARAM_H__ #define __PSPUTILITY_NETPARAM_H__ diff --git a/src/utility/psputility_osk.h b/src/utility/psputility_osk.h index 3d62e6f4..7a6e6e3a 100644 --- a/src/utility/psputility_osk.h +++ b/src/utility/psputility_osk.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -9,7 +9,6 @@ * Copyright (c) 2006 McZonk * Copyright (c) 2008 InsertWittyName * - * $Id: psputility_osk.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef PSPOSK_H #define PSPOSK_H diff --git a/src/utility/psputility_savedata.h b/src/utility/psputility_savedata.h index b1003d61..3d4ff030 100644 --- a/src/utility/psputility_savedata.h +++ b/src/utility/psputility_savedata.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -11,7 +11,6 @@ * Marcus R. Brown * InsertWittyName * - * $Id: psputility_savedata.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPUTILITY_SAVEDATA_H__ diff --git a/src/utility/psputility_sysparam.h b/src/utility/psputility_sysparam.h index 032f41c5..84f2465b 100644 --- a/src/utility/psputility_sysparam.h +++ b/src/utility/psputility_sysparam.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: psputility_sysparam.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPUTILITY_SYSPARAM_H__ #define __PSPUTILITY_SYSPARAM_H__ diff --git a/src/utility/psputility_usbmodules.h b/src/utility/psputility_usbmodules.h old mode 100755 new mode 100644 index c191697f..cae5aaf0 --- a/src/utility/psputility_usbmodules.h +++ b/src/utility/psputility_usbmodules.h @@ -1,48 +1,48 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * 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 - * - */ -#ifndef __PSPUTILITY_USBMODULES_H__ -#define __PSPUTILITY_USBMODULES_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -#include - -#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 +/* + * 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 + * + */ +#ifndef __PSPUTILITY_USBMODULES_H__ +#define __PSPUTILITY_USBMODULES_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +#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 diff --git a/src/vfpu/pspvfpu.c b/src/vfpu/pspvfpu.c index 5fde7ce8..03804c72 100644 --- a/src/vfpu/pspvfpu.c +++ b/src/vfpu/pspvfpu.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Jeremy Fitzhardinge * - * $Id: pspvfpu.c 1796 2006-02-08 19:59:58Z jsgf $ */ #include #include diff --git a/src/vfpu/pspvfpu.h b/src/vfpu/pspvfpu.h index 9792eeca..6b81393b 100644 --- a/src/vfpu/pspvfpu.h +++ b/src/vfpu/pspvfpu.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 Jeremy Fitzhardinge * - * $Id: pspvfpu.h 1751 2006-01-26 01:42:38Z jsgf $ */ #ifndef __PSPVFPU_H__ #define __PSPVFPU_H__ diff --git a/src/video/Makefile.am b/src/video/Makefile.am old mode 100755 new mode 100644 diff --git a/src/video/pspvideocodec.h b/src/video/pspvideocodec.h old mode 100755 new mode 100644 index 50c51100..eb1f1808 --- a/src/video/pspvideocodec.h +++ b/src/video/pspvideocodec.h @@ -1,36 +1,35 @@ -/* - * PSP Software Development Kit - http://www.pspdev.org - * ----------------------------------------------------------------------- - * Licensed under the BSD license, see LICENSE in PSPSDK root for details. - * - * pspvideocodec.h - Prototypes for the sceVideocodec library. - * - * Copyright (c) 2007 cooleyes - * - * $Id: pspvideocodec.h 2418 2008-08-13 23:29:18Z Raphael $ - */ - -#ifndef __SCELIBVIDEOCODEC_H__ -#define __SCELIBVIDEOCODEC_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -int sceVideocodecOpen(unsigned long *Buffer, int Type); -int sceVideocodecGetEDRAM(unsigned long *Buffer, int Type); -int sceVideocodecInit(unsigned long *Buffer, int Type); -int sceVideocodecDecode(unsigned long *Buffer, int Type); -int sceVideocodecReleaseEDRAM(unsigned long *Buffer); - -// sceVideocodecGetVersion -// sceVideocodecScanHeader -// sceVideocodecDelete -// sceVideocodecSetMemory -// sceVideocodecStop - -#ifdef __cplusplus -} -#endif - +/* + * PSP Software Development Kit - https://github.com/pspdev + * ----------------------------------------------------------------------- + * Licensed under the BSD license, see LICENSE in PSPSDK root for details. + * + * pspvideocodec.h - Prototypes for the sceVideocodec library. + * + * Copyright (c) 2007 cooleyes + * + */ + +#ifndef __SCELIBVIDEOCODEC_H__ +#define __SCELIBVIDEOCODEC_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +int sceVideocodecOpen(unsigned long *Buffer, int Type); +int sceVideocodecGetEDRAM(unsigned long *Buffer, int Type); +int sceVideocodecInit(unsigned long *Buffer, int Type); +int sceVideocodecDecode(unsigned long *Buffer, int Type); +int sceVideocodecReleaseEDRAM(unsigned long *Buffer); + +// sceVideocodecGetVersion +// sceVideocodecScanHeader +// sceVideocodecDelete +// sceVideocodecSetMemory +// sceVideocodecStop + +#ifdef __cplusplus +} +#endif + #endif \ No newline at end of file diff --git a/src/video/sceVideocodec.S b/src/video/sceVideocodec.S old mode 100755 new mode 100644 diff --git a/src/vsh/pspchnnlsv.h b/src/vsh/pspchnnlsv.h index 28aab1ad..bd1fdaff 100644 --- a/src/vsh/pspchnnlsv.h +++ b/src/vsh/pspchnnlsv.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -8,7 +8,6 @@ * Copyright (c) 2005 Jim Paris * Copyright (c) 2005 psp123 * - * $Id: pspchnnlsv.h 2433 2008-10-15 10:00:27Z iwn $ */ #ifndef __PSPCHNNLSV_H__ #define __PSPCHNNLSV_H__ diff --git a/src/wlan/pspwlan.h b/src/wlan/pspwlan.h index be0ec49f..6ba984fd 100644 --- a/src/wlan/pspwlan.h +++ b/src/wlan/pspwlan.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 John Kelley * - * $Id: pspwlan.h 2207 2007-03-16 16:42:08Z tyranid $ */ #ifndef __PSPWLAN_H__ #define __PSPWLAN_H__ diff --git a/tools/bin2c.c b/tools/bin2c.c index c2bfb094..fb0a0d9b 100644 --- a/tools/bin2c.c +++ b/tools/bin2c.c @@ -1,11 +1,10 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # Review pspsdk README & LICENSE files for further details. # -# $Id: bin2c.c 210 2005-06-18 17:52:59Z mrbrown $ */ #include diff --git a/tools/bin2o.c b/tools/bin2o.c index f67df1f6..f946937f 100644 --- a/tools/bin2o.c +++ b/tools/bin2o.c @@ -1,12 +1,12 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # Review pspsdk README & LICENSE files for further details. # -# $Id: bin2o.c 1988 2006-08-06 12:06:54Z chip $ -# Convets any file into a PSP's .o file. +# Converts any file into a PSP's .o file. +# */ #include diff --git a/tools/bin2s.c b/tools/bin2s.c index 95a23f49..de0837f9 100644 --- a/tools/bin2s.c +++ b/tools/bin2s.c @@ -1,11 +1,10 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # Review pspsdk README & LICENSE files for further details. # -# $Id: bin2s.c 210 2005-06-18 17:52:59Z mrbrown $ */ #include diff --git a/tools/elftypes.h b/tools/elftypes.h index c73ddc87..558054b3 100644 --- a/tools/elftypes.h +++ b/tools/elftypes.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: elftypes.h 1520 2005-12-04 20:09:36Z tyranid $ */ #ifndef __ELF_TYPES_H__ diff --git a/tools/mksfo.c b/tools/mksfo.c index 4b134830..69070424 100644 --- a/tools/mksfo.c +++ b/tools/mksfo.c @@ -1,12 +1,12 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # Review ps2sdk README & LICENSE files for further details. # # A simple tool to build an SFO file for use in the EBOOT.PBP -# $Id: mksfo.c 1993 2006-08-23 21:40:16Z jim $ +# */ #include diff --git a/tools/mksfoex.c b/tools/mksfoex.c index 923d4410..1ddad8e5 100644 --- a/tools/mksfoex.c +++ b/tools/mksfoex.c @@ -1,12 +1,12 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # Review pspsdk README & LICENSE files for further details. # # New and improved mksfo -# $Id$ +# */ #include #include diff --git a/tools/pack-pbp.c b/tools/pack-pbp.c index 89807b35..cdfa358d 100644 --- a/tools/pack-pbp.c +++ b/tools/pack-pbp.c @@ -1,6 +1,6 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # (c) 2005 Naomi Peori @@ -13,7 +13,6 @@ # - improved memory efficiency with large PBPs # - output name of each file as it's added # -# $Id: pack-pbp.c 2228 2007-05-01 05:22:03Z oopo $ */ #ifdef HAVE_CONFIG_H diff --git a/tools/prxtypes.h b/tools/prxtypes.h index fd25154b..36b1eaa5 100644 --- a/tools/prxtypes.h +++ b/tools/prxtypes.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: prxtypes.h 1095 2005-09-27 21:02:16Z jim $ */ #ifndef __PRXTYPES_H__ diff --git a/tools/psp-build-exports.c b/tools/psp-build-exports.c index e760c844..129f6c48 100644 --- a/tools/psp-build-exports.c +++ b/tools/psp-build-exports.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: psp-build-exports.c 2415 2008-08-01 16:56:26Z Raphael $ */ #include diff --git a/tools/psp-fixup-imports.c b/tools/psp-fixup-imports.c index 840ed8f7..d67bb081 100644 --- a/tools/psp-fixup-imports.c +++ b/tools/psp-fixup-imports.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: psp-fixup-imports.c 2324 2007-10-03 00:51:52Z tyranid $ */ #include diff --git a/tools/psp-prxgen.c b/tools/psp-prxgen.c index 4bb812bd..f7da7fd0 100644 --- a/tools/psp-prxgen.c +++ b/tools/psp-prxgen.c @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: psp-prxgen.c 1520 2005-12-04 20:09:36Z tyranid $ */ #include diff --git a/tools/types.h b/tools/types.h index 68ba4f04..297694c9 100644 --- a/tools/types.h +++ b/tools/types.h @@ -1,5 +1,5 @@ /* - * PSP Software Development Kit - http://www.pspdev.org + * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * @@ -7,7 +7,6 @@ * * Copyright (c) 2005 James Forshaw * - * $Id: types.h 2333 2007-10-31 19:37:40Z tyranid $ */ #ifndef __TYPES_H__ diff --git a/tools/unpack-pbp.c b/tools/unpack-pbp.c index 35f96214..57afcf97 100644 --- a/tools/unpack-pbp.c +++ b/tools/unpack-pbp.c @@ -1,6 +1,6 @@ /* # _____ ___ ____ ___ ____ -# ____| | ____| | | |____| +# ____| | ____| | | |____| https://github.com/pspdev # | ___| | ___| ____| | \ PSPDEV Open Source Project. #----------------------------------------------------------------------- # (c) 2005 Naomi Peori @@ -13,7 +13,6 @@ # - improved memory efficiency with large PBPs # - no longer outputs empty files # -# $Id: unpack-pbp.c 2379 2008-04-08 21:18:58Z jim $ */ #ifdef HAVE_CONFIG_H