mirror of
https://github.com/diasurgical/devilution.git
synced 2025-07-23 12:33:00 +02:00
17 lines
401 B
C
17 lines
401 B
C
/**
|
|
* @file msgcmd.h
|
|
*
|
|
* Interface for sending commands to Battle.net.
|
|
*
|
|
* See http://classic.battle.net/info/commands.shtml for a list of commands.
|
|
*/
|
|
#ifndef __MSGCMD_H__
|
|
#define __MSGCMD_H__
|
|
|
|
void msgcmd_cmd_cleanup();
|
|
void msgcmd_send_chat();
|
|
BOOL msgcmd_add_server_cmd_W(const char *chat_message);
|
|
void msgcmd_add_server_cmd(const char *command);
|
|
|
|
#endif /* __MSGCMD_H__ */
|