2011-07-13 21:51:01 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 20:25:33 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2006-05-05 10:01:21 +00:00
|
|
|
|
2013-10-28 04:06:23 +01:00
|
|
|
#ifndef INCLUDED_VCL_INC_SVSYS_H
|
|
|
|
#define INCLUDED_VCL_INC_SVSYS_H
|
2006-05-05 10:01:21 +00:00
|
|
|
|
2011-01-24 16:34:14 +01:00
|
|
|
#ifdef WNT
|
|
|
|
#include "win/svsys.h"
|
2013-01-11 11:07:23 +02:00
|
|
|
#elif defined MACOSX
|
2013-12-05 22:01:05 +02:00
|
|
|
#include "osx/svsys.h"
|
2011-06-16 02:10:37 +03:00
|
|
|
#elif defined IOS
|
|
|
|
#include "ios/svsys.h"
|
2011-06-21 23:40:13 +03:00
|
|
|
#elif defined ANDROID
|
|
|
|
#include "android/svsys.h"
|
2012-02-21 11:29:42 +01:00
|
|
|
#elif defined LIBO_HEADLESS
|
2011-01-24 16:34:14 +01:00
|
|
|
#else
|
|
|
|
#include "unx/svsys.h"
|
|
|
|
#endif
|
2006-05-05 10:01:21 +00:00
|
|
|
|
|
|
|
#endif
|
2011-07-13 21:51:01 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|