|
-
May 5th, 2011, 04:53 AM
#1
Thread Starter
Fanatic Member
C++ File
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 :
Code:
/*Бърз и прост начин за заместване на краш команда
//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)
I will be in grat if someone learn me how to make this,
Thanks in advance
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|