Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Commit

Permalink
Undoes some changes to DiscordRPC.java
Browse files Browse the repository at this point in the history
  • Loading branch information
DeJayDev committed Apr 25, 2019
1 parent c4c7394 commit 0293d57
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/net/arikia/dev/drpc/DiscordRPC.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ private static FileOutputStream openOutputStream(final File file) throws IOExcep
* @see net.arikia.dev.drpc.callbacks.JoinRequestCallback
*/
public enum DiscordReply {

/**
* Denies the join request immediately.
* Currently behaving the same way like DiscordReply.IGNORE.
Expand Down Expand Up @@ -227,21 +226,13 @@ private interface DLL extends Library {
DLL INSTANCE = Native.loadLibrary("discord-rpc", DLL.class);

void Discord_Initialize(String applicationId, DiscordEventHandlers handlers, int autoRegister, String optionalSteamId);

void Discord_Register(String applicationId, String command);

void Discord_RegisterSteamGame(String applicationId, String steamId);

void Discord_UpdateHandlers(DiscordEventHandlers handlers);

void Discord_Shutdown();

void Discord_RunCallbacks();

void Discord_UpdatePresence(DiscordRichPresence presence);

void Discord_ClearPresence();

void Discord_Respond(String userId, int reply);
}
}

0 comments on commit 0293d57

Please sign in to comment.