Marker use

Post here any topics that related to Enigma Protector, its functionality, your misunderstanding, offers to improvements etc etc etc
Post Reply
mtx-electronics
Posts: 17
Joined: Wed Oct 10, 2012 8:09 am

Marker use

Post by mtx-electronics »

When using VM_Markers or Reg_Crypt to protect an entire function can the variable declarations be put inside the marker?

Code: Select all

int function_example1(void)
{
    int s;
    int y=0;

    #include "include\reg_crypt_begin1.inc"

    ......
    ......

    #include "include\reg_crypt_end1.inc"

    return (s);
}

Code: Select all

int function_example2(void)
{
    #include "include\reg_crypt_begin1.inc"

    int s;
    int y=0;

    ......
    ......

    #include "include\reg_crypt_end1.inc"

    return (s);
}
Enigma
Site Admin
Posts: 2945
Joined: Wed Aug 20, 2008 2:24 pm

Re: Marker use

Post by Enigma »

Yes, it is possible, there is no any restriction with the variables definitions.
Post Reply