Fix FreeBSD build.
[haiku.git] / src / preferences / mail / main.cpp
blobc32b90a53ef45802a81b0f954047bf8bfc21053e
1 /*
2 * Copyright 2011, Haiku, Inc. All rights reserved.
3 * Copyright 2011, Clemens Zeidler <haiku@clemens-zeidler.de>
4 * Distributed under the terms of the MIT License.
5 */
8 #include <Application.h>
10 #include "ConfigWindow.h"
13 int
14 main(int argc, char** argv)
16 BApplication app("application/x-vnd.Haiku-Mail");
18 BWindow* window = new ConfigWindow;
19 window->Show();
21 app.Run();
22 return 0;