Update ooo320-m1
[ooovba.git] / framework / inc / commands.h
blob3e7199083e8dc824f490a243d7746c75ce0ee2e5
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: commands.h,v $
10 * $Revision: 1.5.82.1 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __FRAMEWORK_COMMANDS_H_
32 #define __FRAMEWORK_COMMANDS_H_
34 //_________________________________________________________________________________________________________________
35 // includes
36 //_________________________________________________________________________________________________________________
38 #include <macros/generic.hxx>
39 #include <vos/process.hxx>
40 #include <rtl/ustring.hxx>
42 //_________________________________________________________________________________________________________________
43 // namespace
44 //_________________________________________________________________________________________________________________
46 namespace framework{
48 /*-************************************************************************************************************//**
49 @short These values describe some command line arguments of our office.
50 We need it e.g. to detect running mode of it - plugin, headless ...
51 *//*-*************************************************************************************************************/
53 #define COMMAND_PLUGIN DECLARE_ASCII("-plugin" ) /// office is plugged into a browser
54 #define COMMAND_HEADLESS DECLARE_ASCII("-headless" ) /// office runs in headless mode for scripting
55 #define COMMAND_INVISIBLE DECLARE_ASCII("-invisible" ) /// office runs in invisible mode which supress splash screen and first empry document
56 #define COMMAND_SERVER DECLARE_ASCII("-server" ) /// office runs as server
57 } // namespace framework
59 #endif // #ifndef __FRAMEWORK_TARGETS_H_