messenger.h (1483B)
1 /* 2 This file is part of GNUnet. 3 Copyright (C) 2021--2022 GNUnet e.V. 4 5 GNUnet is free software: you can redistribute it and/or modify it 6 under the terms of the GNU Affero General Public License as published 7 by the Free Software Foundation, either version 3 of the License, 8 or (at your option) any later version. 9 10 GNUnet is distributed in the hope that it will be useful, but 11 WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Affero General Public License for more details. 14 15 You should have received a copy of the GNU Affero General Public License 16 along with this program. If not, see <http://www.gnu.org/licenses/>. 17 18 SPDX-License-Identifier: AGPL3.0-or-later 19 */ 20 /* 21 * @author Tobias Frisch 22 * @file chat/messenger.h 23 */ 24 25 #ifndef CHAT_MESSENGER_H_ 26 #define CHAT_MESSENGER_H_ 27 28 #include <gnunet/gnunet_chat_lib.h> 29 30 typedef struct MESSENGER_Application MESSENGER_Application; 31 32 typedef struct CHAT_MESSENGER_Handle 33 { 34 struct GNUNET_CHAT_Handle *handle; 35 } CHAT_MESSENGER_Handle; 36 37 /** 38 * Startup event of the GNUnet scheduler thread to 39 * handle the messenger application startup. 40 * 41 * @param cls Closure 42 * @param args Arguments 43 * @param cfgfile Configuration file path 44 * @param cfg Configuration 45 */ 46 void 47 chat_messenger_run(void *cls, 48 char *const *args, 49 const char *cfgfile, 50 const struct GNUNET_CONFIGURATION_Handle *cfg); 51 52 #endif /* CHAT_MESSENGER_H_ */