// BMessengerTestApp1.cpp#include <stdio.h>#include <OS.h>#include "CommonTestApp.h"intmain(){// R5: doesn't set the error variable in case of success#ifdef TEST_R5status_t error = B_OK;#elsestatus_t error = B_ERROR;#endifCommonTestApp app("application/x-vnd.obos-bmessenger-testapp1", &error);init_connection();report("error: %lx\n", error);report("InitCheck(): %lx\n", app.InitCheck());if (error == B_OK)app.Run();return 0;}