/* * Copyright (c) 1998 Denis Perchine * Copyright (c) 2004 Szombathelyi György * Maintained by Adriaan de Groot * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2 as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. **/ #ifndef _KU_GLOBALS_H_ #define _KU_GLOBALS_H_ #define _KU_VERSION "3.9" #include "ku_config.h" #ifdef HAVE_PATHS_H #include #endif #define KU_PROPERTY(Type,Name) \ const Type &get##Name() const ; \ void set##Name(Type data) #define KU_PROPERTY_IMPL(Class,Type,Name) \ const Type &Class::get##Name() const { return d->Name; } \ void Class::set##Name(Type data) { d->Name = data; } #define KU_BACKUP_EXT ".bak" #define KU_CREATE_EXT ".new" #ifdef HAVE_PATHS_H #define SHELL_FILE _PATH_SHELLS #define MAIL_SPOOL_DIR _PATH_MAILDIR #else #define SHELL_FILE "/etc/shells" #define MAIL_SPOOL_DIR "/var/spool/mail" #endif #define PASSWORD_FILE "/etc/passwd" #define PASSWORD_FILE_MASK S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH #define PWMKDB "cd /var/yp; make 2>&1 >> /var/log/kuser" #define GRMKDB "cd /var/yp; make 2>&1 >> /var/log/kuser" #define SKELDIR "/etc/skel" #define SKEL_FILE_PREFIX "" #define CRONTAB_DIR "/var/spool/cron" #define GROUP_FILE "/etc/group" #define GROUP_FILE_MASK S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH #endif // _KU_GLOBALS_H_