00001 /* 00002 * PSP Software Development Kit - http://www.pspdev.org 00003 * ----------------------------------------------------------------------- 00004 * Licensed under the BSD license, see LICENSE in PSPSDK root for details. 00005 * 00006 * pspmoduleexport.h - Definitions for the .rodata.sceResident section. 00007 * 00008 * Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org> 00009 * Copyright (c) 2005 James Forshaw <tyranid@gmail.com> 00010 * Copyright (c) 2005 John Kelley <ps2dev@kelley.ca> 00011 * 00012 * $Id: pspmoduleexport.h 1095 2005-09-27 21:02:16Z jim $ 00013 */ 00014 00015 #ifndef PSP_MODEXPORT_H_ 00016 #define PSP_MODEXPORT_H_ 00017 00019 struct _PspLibraryEntry { 00020 const char * name; 00021 unsigned short version; 00022 unsigned short attribute; 00023 unsigned char entLen; 00024 unsigned char varCount; 00025 unsigned short funcCount; 00026 void * entrytable; 00027 }; 00028 00029 #endif