| 26 |
#include "menu.h" |
#include "menu.h" |
| 27 |
#include "section_list_display.h" |
#include "section_list_display.h" |
| 28 |
#include "screen.h" |
#include "screen.h" |
| 29 |
|
#include "user_list_display.h" |
| 30 |
#include "user_priv.h" |
#include "user_priv.h" |
| 31 |
#include <dlfcn.h> |
#include <dlfcn.h> |
| 32 |
#include <errno.h> |
#include <errno.h> |
| 343 |
} |
} |
| 344 |
|
|
| 345 |
return REDRAW; |
return REDRAW; |
| 346 |
|
} |
| 347 |
|
|
| 348 |
|
int list_user(void *param) |
| 349 |
|
{ |
| 350 |
|
if (user_list_display(0) < 0) |
| 351 |
|
{ |
| 352 |
|
log_error("user_list_display(all_user) error\n"); |
| 353 |
|
} |
| 354 |
|
|
| 355 |
|
return REDRAW; |
| 356 |
|
} |
| 357 |
|
|
| 358 |
|
int list_online_user(void *param) |
| 359 |
|
{ |
| 360 |
|
if (user_list_display(1) < 0) |
| 361 |
|
{ |
| 362 |
|
log_error("user_list_display(online_user) error\n"); |
| 363 |
|
} |
| 364 |
|
|
| 365 |
|
return REDRAW; |
| 366 |
} |
} |