private static extern Int32 _GetConfiguration(out Configuration configuration);
 /// <summary>
 /// Gives back the current configuration for CONFIRE SHERLOCK
 /// </summary>
 /// <param name="configuration">A Configuration struct that contains all information.</param>
 /// <exception cref="Exception">if call was not successfull.</exception>
 public static void GetConfiguration(out Configuration configuration)
 {
     if (_GetConfiguration(out configuration) != 0)
     {
         throw new Exception();
     }
 }