pszKey="Example"; //store the folowing data in the key "Example"
pszValue="This text is saved in DreamKeys.ini"; //the data to be stored
return FALSE; ////no more things to save after this one. Return TRUE if there are more thing to save.
}
char* MoreInfo(void) {
return "An example plug-in for programmers. The source of this plug-in is freely available at out webpage.\n⌐1999 Digital Dreams Software";
}
BOOL AcceptAuto(void) {
return TRUE; //if returned FALSE, a warning is issued when user sets this plug-in to auto. Default is TRUE.
}
void Config(void) {
//you can do here whatever you want, as long as it has something to do with the plug-in :-)
MessageBox(NULL,"Normally, a configuration dialog for the Plug-in is displayed now. This is just an example","Config button pressed",MB_ICONINFORMATION);