26 lines
421 B
C
26 lines
421 B
C
/*
|
|
* psg_prop.h
|
|
*
|
|
* Created on: Aug 19, 2025
|
|
* Author: herli
|
|
*/
|
|
|
|
#ifndef INC_PSG_PROP_H_
|
|
#define INC_PSG_PROP_H_
|
|
|
|
typedef struct {
|
|
char client_ident[13]; // 12 + null
|
|
char unk_ident1[11];
|
|
char soft_info[11];
|
|
char unk_ident2[11];
|
|
char unk_ident3[11];
|
|
} PSGControllerInfo;
|
|
|
|
#define i_Ident "0470504005"
|
|
#define i_SerialN "225832"
|
|
#define i_modIndex "000004"
|
|
|
|
|
|
|
|
#endif /* INC_PSG_PROP_H_ */
|