mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 19:49:58 +00:00
21 lines
438 B
C
21 lines
438 B
C
/* Copyright (C) 2011, 2012 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
#ifndef PSPMODULEEXPORT_H
|
|
#define PSPMODULEEXPORT_H
|
|
|
|
/** Structure to hold a single export entry */
|
|
struct SceLibraryEntry {
|
|
const char * name;
|
|
unsigned short version;
|
|
unsigned short attribute;
|
|
unsigned char entLen;
|
|
unsigned char varCount;
|
|
unsigned short funcCount;
|
|
void * entrytable;
|
|
};
|
|
|
|
#endif
|
|
|