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