menu_process.h 757 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2021 Alibaba Group Holding Limited
  3. * Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <stdio.h>
  10. #include <curses.h>
  11. #include <ctype.h>
  12. #include <string.h>
  13. #include <stdlib.h>
  14. #include <unistd.h>
  15. #define LOG_LEVEL 3
  16. #define LOG_PREFIX "camera_demo3"
  17. #include <syslog.h>
  18. #include "camera_manager.h"
  19. #include "param.h"
  20. #include "app_dialogs.h"
  21. extern cams_t *cam_session;
  22. void menu_camera_process(menu_camera_item_e item);
  23. void menu_channel_process(menu_camera_item_e item);
  24. void menu_event_run_process(menu_camera_item_e item);