1 /* 2 * Copyright 2009, Haiku Inc. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Jonas Sundström, jonas@kirilla.com 7 */ 8 9 10 #include "PreferencesWindow.h" 11 12 #include <Application.h> 13 #include <Roster.h> 14 15 16 int 17 main(int argc, char **argv) 18 { 19 BApplication app("application/x-vnd.Haiku-DeskbarPreferences"); 20 be_roster->Launch("application/x-vnd.Be-TSKB", new BMessage(kConfigShow)); 21 return 0; 22 } 23 24