mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
Add some unused network packets for game info transmission
This commit is contained in:
parent
6b8bdfce22
commit
3c27c3b326
@ -84,6 +84,13 @@ struct NetworkUpdate
|
||||
uint8 data[];
|
||||
};
|
||||
|
||||
struct NetworkUpdateServerInfo
|
||||
{
|
||||
uint32 game_info_seq_nr;
|
||||
uint32 dummy[3]; /* Future */
|
||||
};
|
||||
|
||||
|
||||
struct NetworkUpdateDisplay
|
||||
{
|
||||
uint8 square;
|
||||
@ -120,6 +127,24 @@ struct NetworkUpdateRegisterData
|
||||
uint8_t data[];
|
||||
};
|
||||
|
||||
struct NetworkUpdateGameInfoHash
|
||||
{
|
||||
uint16_t hash; /* Hash by filename */
|
||||
uint16_t seq_nr;
|
||||
};
|
||||
|
||||
struct NetworkUpdateGameInfoHashList
|
||||
{
|
||||
uint16_t n_entries;
|
||||
NetworkUpdateGameInfoHash hashes[];
|
||||
};
|
||||
|
||||
struct NetworkUpdateGameInfoList
|
||||
{
|
||||
uint16_t n_entries;
|
||||
uint32_t register_keys[];
|
||||
};
|
||||
|
||||
struct NetworkUpdateSoundInfo
|
||||
{
|
||||
uint16 delay_cycles;
|
||||
|
Loading…
Reference in New Issue
Block a user