daemon: make game_mode_client_unref public

So it can be used outside ouf gamemode-context.c.
This commit is contained in:
Christian Kellner
2019-07-02 17:22:18 +02:00
parent 1a863f32a1
commit 7e10cc3a0b
2 changed files with 10 additions and 2 deletions

View File

@ -45,6 +45,15 @@ typedef struct GameModeContext GameModeContext;
typedef struct GameModeConfig GameModeConfig;
typedef struct GameModeClient GameModeClient;
/**
* GameModeClient related functions
*/
/**
* Decrement the usage count of client.
*/
void game_mode_client_unref(GameModeClient *client);
/**
* Return the singleton instance
*/