Distributed Calc HowTo/Help Page
HowTo create new calc module
Distributed Calc module is binary Dynamic Link Library. For creation of new module you need C/C++ compiler and interface header file "ModuleIface.h" that contains description of the interface. You can find it in directory where you have intalled Distributed Calc (Typically "C:\Program Files\Distributed Calc\" on Windows)
This HowTo describes how to compile simple module which summarize two integer numbers. MSVC 2005 is used to compile new module.
Create new Visual C++ Win32 Console Application project using MSVC wizard. Set "summarize" as Name of the project.
Copy ModuleIface.h to the project directory. Add "ModuleIface.h" file to the Header Files of project.
Copy summarize.cpp to the project directory and add file to the Source Files of project. This file contain simple C++ code for extracting from input string two integer numbers, summarize and set result string.
Rebuild solution and add compiled summarize.dll to Distributed Calc manager.
You can use input.dci as input file.
