Files
haiku-beta6/src/preferences/mail/main.cpp
T
Clemens Zeidler 6467e4b16d Fix reading of compressed strings. This fixes #7266. Some clean up.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40895 a95241bf-73f2-0310-859d-f6bbb57e9c96
2011-03-10 06:25:57 +00:00

24 lines
394 B
C++

/*
* Copyright 2011, Haiku, Inc. All rights reserved.
* Copyright 2011, Clemens Zeidler <[email protected]>
* Distributed under the terms of the MIT License.
*/
#include <Application.h>
#include "ConfigWindow.h"
int
main(int argc, char** argv)
{
BApplication app("application/x-vnd.Haiku-Mail");
BWindow* window = new ConfigWindow;
window->Show();
app.Run();
return 0;
}