-
I have a function like this and I would like to eliminate int __cdecl mw_execute_cmd(char *param_1,int *param_2)
{
int iVar1;
int iVar2;
if (param_1[1] == ':') {
switch(*param_1) {
case 'b':
iVar2 = mw_launch_and_inject_svchost_w(param_1 + 2);
*param_2 = iVar2;
iVar1 = 1;
break;
... So it would become this: int __cdecl mw_execute_cmd(char *param_1,int *param_2)
{
int iVar1;
if (param_1[1] == ':') {
switch(*param_1) {
case 'b':
*param_2 = mw_launch_and_inject_svchost_w(param_1 + 2);
iVar1 = 1;
break;
... I tried to locate a related setting under |
Beta Was this translation helpful? Give feedback.
Answered by
astrelsky
Jan 25, 2025
Replies: 1 comment 1 reply
-
You can't. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gemesa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't.