/* * This file is a part of VyQChat. * * Copyright (C) 2002-2004 Pawel Stolowski * * VyQChat is free software; you can redestribute it and/or modify it * under terms of GNU General Public License by Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY. See GPL for more details. */ #ifndef __GLOBAL_H #define __GLOBAL_H #include "config.h" // // global constants #ifndef DATADIR #define DATADIR "./" #endif #define VYQCHAT_VERSION VERSION // // starting IDs for menu items enum { ID_COMMAND_MENU = 100, ID_USERSLIST_MENU = 200 }; #endif