// BApplicationTestApp5b.cpp#include <stdio.h>#include <Application.h>intmain(){status_t error = B_OK;BApplication app("application/x-vnd.obos-bapplication-testapp5", &error);printf("error: %lx\n", error);printf("InitCheck(): %lx\n", app.InitCheck());return 0;}