mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
ipmi: fixed respond sync, get message, try get message, try send message event: detach event emitter from file signals: basic implementation linker: fixed zero symbol relocation, fixed exec relocation shared_cv/mutex: implement eintr response support shared_cv: fixed possible loop instead of wait ipmi: implement invoke async, respond async, get result, get client app id, client get name rpcsx-os: add safemode flag
17 lines
330 B
C++
17 lines
330 B
C++
#pragma once
|
|
|
|
#include "orbis-config.hpp"
|
|
|
|
struct MBusEvent {
|
|
orbis::uint32_t system;
|
|
orbis::uint32_t eventId;
|
|
orbis::uint64_t deviceId;
|
|
orbis::uint32_t unk1; // device type?
|
|
orbis::uint32_t subsystem;
|
|
orbis::uint64_t unk2;
|
|
orbis::uint64_t unk3;
|
|
orbis::uint64_t unk4;
|
|
};
|
|
|
|
static_assert(sizeof(MBusEvent) == 0x30);
|