Skip to content

Commit

Permalink
dont c++20
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed May 24, 2024
1 parent d8196eb commit e397714
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/core/GuiCorePlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,24 @@ static int r_cmd_anal_call(void *user, const char *input) {
extern "C" {
// Plugin Definition Info
RCorePlugin r_core_plugin_uiaito = {
#if __WINDOWS__
{
(char *)"ui",
(char *)"Interact with iaito UI from the r2 shell",
(char *)"pancake",
(char *)"0.1",
(char *)"LGPL3",
0
},
r_cmd_anal_call,
#else
.meta = {
.name = (char *)"ui",
.desc = (char *)"Interact with iaito UI from the r2 shell",
.license = (char *)"LGPL3",
},
.call = r_cmd_anal_call,
#endif
};

static R_API RLibStruct uiaito_radare_plugin = {
Expand Down

0 comments on commit e397714

Please sign in to comment.