C++ API Library Setup

From RangerMSP Wiki - PSA software for MSPs and IT services providers
Jump to: navigation, search

Headline text

Decompress the downloaded archive to a destination folder of your choice. In the root folder CRM-CPP you’ll find two solution files:

  • CRM-CPP-2008.sln – for Visual Studio 2008
  • CRM-CPP-2010.sln – for Visual Studio 2010

Depending of what version is installed on the local computer, open the one or the other solution file.

The distributed files are plain source files (there are no precompiled files included), so you’ll have to rebuild the whole solution.

After everything is compiled, locate the sample1.cpp file in the Sample1 project and ensure that config.DllFolder and config.DbFolder point to the correct paths on your computer (<your-server>\RangerMSP\ThirdParty\UserDev and <your-server>\RangerMSP\Db accordingly)..

The file has many comments explaining each step, we recommend examining sample1.cpp source file before executing the compiled program. In a nutshell, the sample will search for an account (if it doesn’t find it, it will create new one), and then demonstrates adding/searching for a ticket and adding/listing charges.

To use the library in your own project you’ll have to link to the CRMLib.lib (the static library will be created after compiling the source code) and add the Source folder to the INCLUDE path for your compiler (this is already done for the Sample1 project).

Back to RangerMSP C++ API Page