I know i posted something like this some time ago but im still stuck. This is the code of the application i want to log the function1 function from.
#include <cstdlib>
#include <iostream>
using namespace std;
void function1(int wat);
int main(int argc, char *argv[])
{
function1(1);
system("PAUSE");
return EXIT_SUCCESS;
}
void function1(int wat)
{
if(wat==1)
{
cout << "lol" << endl;
}
}I want to know the address and the variables it needs and i want to find it using a debugger.
Can someone help me out with this(again)?
And im searching for correct terms:
- function1 = "user-defined function?"
- int wat = "function variable?"
- function1 address = "offset?"
ps. my other post was atleast half a year ago ;)





