xref: /haiku/src/tests/kits/app/bapplication/testapps/BApplicationTestApp5b.cpp (revision 24159a0c7d6d6dcba9f2a0c1a7c08d2c8167f21b)
1 // BApplicationTestApp5b.cpp
2 
3 #include <stdio.h>
4 
5 #include <Application.h>
6 
7 int
8 main()
9 {
10 	status_t error = B_OK;
11 	BApplication app("application/x-vnd.obos-bapplication-testapp5", &error);
12 	printf("error: %lx\n", error);
13 	printf("InitCheck(): %lx\n", app.InitCheck());
14 	return 0;
15 }
16 
17