/*1* PSP Software Development Kit - http://www.pspdev.org2* -----------------------------------------------------------------------3* Licensed under the BSD license, see LICENSE in PSPSDK root for details.4*5* psf.h - Declarations for functions in psf.c6*7* Copyright (c) 2005 Jim Paris <[email protected]>8* Coypright (c) 2005 psp1239*10* $Id: psf.h 1559 2005-12-10 01:10:11Z jim $11*/1213#include <pspchnnlsv.h>1415/* Find the named section in the PSF file, and return an16absolute pointer to it and the section size. */17int find_psf_section(const char *name,18unsigned char *data,19int dataLen,20unsigned char **location,21int *size);2223/* Find the named file inside the FILE_LIST, and return24an absolute pointer to it. */25int find_psf_datafile(const char *name,26unsigned char *filelist,27int size,28unsigned char **location);293031