mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
25 lines
467 B
C
25 lines
467 B
C
#ifndef __RARCH_PRESENCE_H
|
|
#define __RARCH_PRESENCE_H
|
|
|
|
enum presence
|
|
{
|
|
PRESENCE_NONE = 0,
|
|
PRESENCE_MENU,
|
|
PRESENCE_GAME,
|
|
PRESENCE_GAME_PAUSED,
|
|
PRESENCE_NETPLAY_HOSTING,
|
|
PRESENCE_NETPLAY_CLIENT,
|
|
PRESENCE_NETPLAY_NETPLAY_STOPPED,
|
|
PRESENCE_RETROACHIEVEMENTS,
|
|
PRESENCE_SHUTDOWN
|
|
};
|
|
|
|
typedef struct presence_userdata
|
|
{
|
|
enum presence status;
|
|
} presence_userdata_t;
|
|
|
|
void presence_update(enum presence presence);
|
|
|
|
#endif /* __RARCH_PRESENCE_H */
|