/**************************************************************************** * This file is part of the project AqHome. * AqHome (c) by 2025 Martin Preuss, all rights reserved. * * The license for this file can be found in the file COPYING which you * should have received along with this file. ****************************************************************************/ #ifndef AQHOME_CGI_MUSERS_H #define AQHOME_CGI_MUSERS_H #include #include #include #define AQH_MODADMUSERS_PERMS_USERSREAD 0x001 #define AQH_MODADMUSERS_PERMS_USERSWRITE 0x002 #define AQH_MODADMUSERS_PERMS_USERSADD 0x004 #define AQH_MODADMUSERS_PERMS_USERSDEL 0x008 void AQH_ModAdmUsers_Extend(AQH_MODULE *m, AQH_SERVICE *sv, const char *baseFolder); int AQH_ModAdmUsers_Create(AQH_SERVICE *sv); #endif