Need help with 1 job, couse i'm begginer.
Please help me , couse i write in alot forums and nobady knows c++ to help me with it.
Here is what i need :
Hello,
Can someone tell me how to do this:
I'm begginer with c++ i had just started learning the book and i want some help to learn something
Can someone learn me how to make this:
I use : Visual Studio 2010
The job is this:
Code :
1 2 3 4 5 6 7 8
|
/*Бърз и прост начин за заместване на краш команда
//AntiCrash Prevent
*/
for(int X=0; X < (int)strlen(Message);X++){
if(Message[X] == '%'){
Message[X] = '"';
}
}
| |
How to make this source to be a .dll file with name (for example: MFS.dll) and this file to read information from an .ini file (for example: MFS.ini, the .ini file must to be in the same folder where it is the .dll file if its not to show error that cant find the file MFS.ini (or you can show me how to put a path to read the file from other folder that will be good too to learn))
MFS.ini:
[code]
// Разрешаване на проблема с краш командата
// Fix The Crash Problem
FixCrash = 1; // (0-Disable,1-Enable)
If in the MFS.ini on the line
FixCrash = 1;
To use the source code as enabled , if its 0 to be disabled (not to use the source code)
Also i want to take advnice that i didnt have any function in the code, so please help me build the .dll file
Thanks in advance