PSPSDK 1.0+beta2
Loading...
Searching...
No Matches
pspmoduleexport.h
Go to the documentation of this file.
1/*
2 * PSP Software Development Kit - https://github.com/pspdev
3 * -----------------------------------------------------------------------
4 * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5 *
6 * pspmoduleexport.h - Definitions for the .rodata.sceResident section.
7 *
8 * Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org>
9 * Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
10 * Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
11 *
12 */
13
14#ifndef PSP_MODEXPORT_H_
15#define PSP_MODEXPORT_H_
16
19 const char * name;
20 unsigned short version;
21 unsigned short attribute;
22 unsigned char entLen;
23 unsigned char varCount;
24 unsigned short funcCount;
25 void * entrytable;
26};
27
28#endif
Structure to hold a single export entry.
Definition pspmoduleexport.h:18
unsigned char entLen
Definition pspmoduleexport.h:22
unsigned short attribute
Definition pspmoduleexport.h:21
unsigned short funcCount
Definition pspmoduleexport.h:24
void * entrytable
Definition pspmoduleexport.h:25
unsigned char varCount
Definition pspmoduleexport.h:23
unsigned short version
Definition pspmoduleexport.h:20
const char * name
Definition pspmoduleexport.h:19