2012-01-01 00:41:00 +00:00
|
|
|
/* Copyright (C) 2011, 2012 The uOFW team
|
2011-12-29 21:27:05 +00:00
|
|
|
See the file COPYING for copying permission.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PSPMODULEEXPORT_H
|
|
|
|
#define PSPMODULEEXPORT_H
|
|
|
|
|
|
|
|
/** Structure to hold a single export entry */
|
2012-05-27 22:13:07 +00:00
|
|
|
struct SceLibraryEntry {
|
2011-12-29 21:27:05 +00:00
|
|
|
const char * name;
|
|
|
|
unsigned short version;
|
|
|
|
unsigned short attribute;
|
|
|
|
unsigned char entLen;
|
|
|
|
unsigned char varCount;
|
|
|
|
unsigned short funcCount;
|
2021-01-19 10:10:24 +00:00
|
|
|
const void * entrytable;
|
2011-12-29 21:27:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|