Move visual modes to librz/core/tui/
This commit is contained in:
parent
e595da9cd3
commit
09cbd2648d
8 changed files with 11 additions and 11 deletions
|
|
@ -31,7 +31,6 @@ rz_core_sources = [
|
|||
'hack.c',
|
||||
'libs.c',
|
||||
#'linux_heap_glibc.c',
|
||||
'panels.c',
|
||||
'cplugin.c',
|
||||
'project.c',
|
||||
'project_migrate.c',
|
||||
|
|
@ -40,12 +39,7 @@ rz_core_sources = [
|
|||
#'rtr_shell.c',
|
||||
'seek.c',
|
||||
'task.c',
|
||||
'vasm.c',
|
||||
'visual.c',
|
||||
'vmarks.c',
|
||||
'vmenus.c',
|
||||
'vmenus_graph.c',
|
||||
'vmenus_zigns.c',
|
||||
'yank.c',
|
||||
'p/core_java.c',
|
||||
'cannotated_code.c',
|
||||
|
|
@ -53,7 +47,7 @@ rz_core_sources = [
|
|||
cmd_descs_ch,
|
||||
'cmd/cmd.c',
|
||||
#'cmd/cmd_analysis.c',
|
||||
'cmd/cmd_api.c'
|
||||
'cmd/cmd_api.c',
|
||||
#'cmd/cmd_cmp.c',
|
||||
#'cmd/cmd_debug.c',
|
||||
#'cmd/cmd_egg.c',
|
||||
|
|
@ -75,7 +69,13 @@ rz_core_sources = [
|
|||
#'cmd/cmd_seek.c',
|
||||
#'cmd/cmd_type.c',
|
||||
#'cmd/cmd_write.c',
|
||||
#'cmd/cmd_zign.c'
|
||||
#'cmd/cmd_zign.c',
|
||||
'tui/visual.c',
|
||||
'tui/vmenus.c',
|
||||
'tui/vmenus_graph.c',
|
||||
'tui/vmenus_zigns.c',
|
||||
'tui/vasm.c',
|
||||
'tui/panels.c'
|
||||
]
|
||||
|
||||
rz_core_inc = []
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
// SPDX-License-Identifier: LGPL-3.0-only
|
||||
|
||||
#include <rz_core.h>
|
||||
#include "core_private.h"
|
||||
#include "../core_private.h"
|
||||
|
||||
#define PANEL_NUM_LIMIT 9
|
||||
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <rz_core.h>
|
||||
#include <rz_cons.h>
|
||||
#include "core_private.h"
|
||||
#include "../core_private.h"
|
||||
|
||||
#define NPF 5
|
||||
#define PIDX (RZ_ABS(core->printidx % NPF))
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
#include <rz_core.h>
|
||||
#include <rz_util.h>
|
||||
|
||||
#include "core_private.h"
|
||||
#include "../core_private.h"
|
||||
|
||||
#define MAX_FORMAT 3
|
||||
|
||||
Loading…
Reference in a new issue