CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Tools/SaveTool/psf.h
Views: 1401
1
/*
2
* PSP Software Development Kit - http://www.pspdev.org
3
* -----------------------------------------------------------------------
4
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5
*
6
* psf.h - Declarations for functions in psf.c
7
*
8
* Copyright (c) 2005 Jim Paris <[email protected]>
9
* Coypright (c) 2005 psp123
10
*
11
* $Id: psf.h 1559 2005-12-10 01:10:11Z jim $
12
*/
13
14
#include <pspchnnlsv.h>
15
16
/* Find the named section in the PSF file, and return an
17
absolute pointer to it and the section size. */
18
int find_psf_section(const char *name,
19
unsigned char *data,
20
int dataLen,
21
unsigned char **location,
22
int *size);
23
24
/* Find the named file inside the FILE_LIST, and return
25
an absolute pointer to it. */
26
int find_psf_datafile(const char *name,
27
unsigned char *filelist,
28
int size,
29
unsigned char **location);
30
31