mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-24 04:14:50 +01:00
17 lines
286 B
C
17 lines
286 B
C
|
#ifndef _BNSF_KEYS_H_
|
||
|
#define _BNSF_KEYS_H_
|
||
|
|
||
|
typedef struct {
|
||
|
const char* key;
|
||
|
} bnsfkey_info;
|
||
|
|
||
|
/* Known keys, extracted from games' exe */
|
||
|
static const bnsfkey_info s14key_list[] = {
|
||
|
|
||
|
/* THE iDOLM@STER 2 (PS3/X360) */
|
||
|
{"haruka17imas"},
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif/*_BNSF_KEYS_H_*/
|