mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 09:40:23 +01:00
16 lines
424 B
C
16 lines
424 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "stdafx.h"
|
||
|
|
|
||
|
|
namespace discord
|
||
|
|
{
|
||
|
|
// Convenience function for initialization
|
||
|
|
void initialize(const std::string& application_id = "424004941485572097");
|
||
|
|
|
||
|
|
// Convenience function for shutdown
|
||
|
|
void shutdown();
|
||
|
|
|
||
|
|
// Convenience function for status updates. The default is set to idle.
|
||
|
|
void update_presence(const std::string& state = "", const std::string& details = "Idle", bool reset_timer = true);
|
||
|
|
}
|