Search found 1 match

by alex99
Tue Mar 22, 2011 5:51 pm
Forum: Technical questions
Topic: Protection question
Replies: 1
Views: 6152

Protection question

suppose I have two functions a() and b();

What happens if I do?

a() {
VMProtectBegin("protect");
b();
VMProtectEnd();
}


b()
{
// do stuff
}

Is the content of b() visible in clear or is it also protected? Or do I need to call VMProtectBegin/End within b() as well?