Client to ask oFono to dial.
#include "Eldbus.h"
#include <Ecore.h>
static void
{
   const char *errname, *errmsg;
   const char *call_path;
     {
        fprintf(stderr, "Error: %s %s\n", errname, errmsg);
        return;
     }
     {
        fprintf(stderr, "Error: could not get call path\n");
        return;
     }
   printf("dialed! call path: %s\n", call_path);
}
int
main(int argc, char *argv[])
{
   const char *number, *hide_callerid;
   if (argc < 2)
     {
        fprintf(stderr, "Usage:\n\t%s <number> [hide_callerid]\n", argv[0]);
        return EXIT_FAILURE;
     }
   number = argv[1];
   hide_callerid = (argc > 2) ? argv[2] : "";
   if (!conn)
     {
        fprintf(stderr, "Error: could not get system bus\n");
        return EXIT_FAILURE;
     }
   if (!obj)
     {
        fprintf(stderr, "Error: could not get object\n");
        return EXIT_FAILURE;
     }
   if (!manager)
     {
        fprintf(stderr, "Error: could not get proxy\n");
        return EXIT_FAILURE;
     }
                              -1, "ss", number, hide_callerid);
   if (!pending)
     {
        fprintf(stderr, "Error: could not call\n");
        return EXIT_FAILURE;
     }
   return 0;
}