I need help for making memory address's result based on what we need from MemAddr.ini. I.e: for C#/CSharp language:-
Code:
// Declare the unmanaged functions.
[DllImport("kernel32.dll", EntryPoint = "GetPrivateProfileString")]
private static extern int GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, StringBuilder lpReturnedString, int nSize, string lpFileName);
static void MAddr(string section, string key)
{
string filename = "\MemAddr.ini";
int chars = 256;
StringBuilder buffer = new StringBuilder(chars);
string sDefault = "";
if (GetPrivateProfileString(section, key, sDefault, buffer, chars, filename) != 0)
{
RMAddr(key, buffer.ToString())
}
else
{
Console.WriteLine("Value of Key1 in [SampleSection] is: " + null);
}
}
). (Need example from Patch 4356 or any version)p/s: if you guys dont know how to code it in CSharp, well any language likes C++/C, or VB, AutoIT, etc is allowed, unless it can help me to get a clue..






