Merge pull request #1236 from theuni/android-rebase-11
[vuplus_xbmc] / xbmc / DllPaths.h
1 #ifndef DLL_PATHS_H_
2 #define DLL_PATHS_H_
3
4 /*
5  *      Copyright (C) 2005-2010 Team XBMC
6  *      http://www.xbmc.org
7  *
8  *  This Program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2, or (at your option)
11  *  any later version.
12  *
13  *  This Program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with XBMC; see the file COPYING.  If not, write to
20  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21  *  http://www.gnu.org/copyleft/gpl.html
22  *
23  */
24
25 #ifdef _WIN32
26 #include "DllPaths_win32.h"
27 #elif defined (__ANDROID__)
28 #include "DllPaths_generated_android.h"
29 #else
30 #include "DllPaths_generated.h"
31 #endif
32
33 #endif
34