mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-25 16:01:41 +00:00
f1ce6fe669
- Adds a python script to generate the tables, to avoid std::map init - Generates stub "slots" to provide runtime information when a stub is called - Provides fallback for unknown stubs
11 lines
171 B
C++
11 lines
171 B
C++
#include <stdint.h>
|
|
|
|
namespace aerolib {
|
|
|
|
struct nid_entry {
|
|
const char* nid;
|
|
const char* name;
|
|
};
|
|
|
|
nid_entry* find_by_nid(const char* nid);
|
|
}; |