2023-01-02 13:17:18 -06:00
|
|
|
#ifndef CLIENT_CLIENT_HPP
|
|
|
|
|
#define CLIENT_CLIENT_HPP
|
|
|
|
|
|
|
|
|
|
#include "event/Event.hpp"
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
class CVar;
|
|
|
|
|
|
|
|
|
|
namespace Client {
|
|
|
|
|
extern CVar* g_accountListVar;
|
|
|
|
|
extern HEVENTCONTEXT g_clientEventContext;
|
2025-03-29 22:51:38 +04:00
|
|
|
extern char g_currentLocaleName[5];
|
2025-03-29 22:55:04 +04:00
|
|
|
}
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-05 20:58:33 -06:00
|
|
|
void ClientPostClose(int32_t a1);
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2025-03-29 22:58:53 +04:00
|
|
|
const char* UpdateInstallLocation();
|
|
|
|
|
|
2023-01-05 20:58:33 -06:00
|
|
|
void CommonMain();
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-05 20:58:33 -06:00
|
|
|
void StormInitialize();
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-05 20:58:33 -06:00
|
|
|
void WowClientInit();
|
2023-01-02 13:17:18 -06:00
|
|
|
|
|
|
|
|
#endif
|