You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/libksirtet/lib/defines.h

36 lines
856 B

#ifndef DEFINES_H
#define DEFINES_H
#include <tdemessagebox.h>
#include <kextsock.h>
// constants
#define TALKER_MAX_LENGTH 35
#define NAME_MAX_LENGTH 15
// config keys
#define MP_GROUP "Multi-Players"
#define MP_GAMETYPE "Game type"
#define MP_PLAYER_NAME "Player name #%1"
#define MP_PLAYER_TYPE "Player type #%1"
#define MP_SERVER_ADDRESS "Server address"
#define MP_PORT "Port"
void errorBox(const TQString &msg1, const TQString &msg2, TQWidget *parent);
TQString socketError(const KExtendedSocket *socket);
bool checkSocket(int res, const KExtendedSocket *,
const TQString &msg, TQWidget *parent);
#define R_ERROR_BOX(msg1, msg2) { \
errorBox(msg1, msg2, this); \
return; \
}
template <class Type>
bool XOR(Type a, Type b)
{
return ( (!a && b) || (a && !b) );
}
#endif // DEFINES_H