| 1 |
/*************************************************************************** |
/* SPDX-License-Identifier: GPL-3.0-or-later */ |
| 2 |
menu_proc.c - description |
/* |
| 3 |
------------------- |
* menu_proc |
| 4 |
begin : Fri May 6 2005 |
* - handler functions of menu commands |
| 5 |
copyright : (C) 2005 by Leaflet |
* |
| 6 |
email : leaflet@leafok.com |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
| 7 |
***************************************************************************/ |
*/ |
|
|
|
|
/*************************************************************************** |
|
|
* * |
|
|
* This program is free software; you can redistribute it and/or modify * |
|
|
* it under the terms of the GNU General Public License as published by * |
|
|
* the Free Software Foundation; either version 2 of the License, or * |
|
|
* (at your option) any later version. * |
|
|
* * |
|
|
***************************************************************************/ |
|
| 8 |
|
|
| 9 |
#ifndef _MENU_PROC_H_ |
#ifndef _MENU_PROC_H_ |
| 10 |
#define _MENU_PROC_H_ |
#define _MENU_PROC_H_ |
| 11 |
|
|
| 12 |
extern int exec_mbem(const char *); |
extern int list_section(void *param); |
| 13 |
extern int exitbbs (const char *); |
extern int exec_mbem(void *param); |
| 14 |
extern int bbsnet (const char *); |
extern int exit_bbs(void *param); |
| 15 |
extern int license (const char *); |
extern int license(void *param); |
| 16 |
extern int copyright (const char *); |
extern int copyright(void *param); |
| 17 |
extern int reloadbbsmenu (const char *); |
extern int version(void *param); |
| 18 |
extern int shutdownbbs (const char *); |
extern int reload_bbs_conf(void *param); |
| 19 |
|
extern int shutdown_bbs(void *param); |
| 20 |
|
extern int favor_section_filter(void *param); |
| 21 |
|
extern int view_ex_article(void *param); |
| 22 |
|
extern int list_ex_section(void *param); |
| 23 |
|
extern int show_top10_menu(void *param); |
| 24 |
|
extern int locate_article(void *param); |
| 25 |
|
extern int favor_topic(void *param); |
| 26 |
|
extern int list_user(void *param); |
| 27 |
|
extern int list_online_user(void *param); |
| 28 |
|
|
| 29 |
#endif //_MENU_PROC_H_ |
#endif //_MENU_PROC_H_ |