Merge pull request #206 from cptspiff/remove-convutils
[vuplus_xbmc] / xbmc / linux / ConvUtils.h
1 #ifndef __CONV_UTILS__H__
2 #define __CONV_UTILS__H__
3
4 /*
5  *      Copyright (C) 2005-2008 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 #include "PlatformDefs.h" // UINT DWORD LPCSTR LPSTR LPBOOL ...
25
26 DWORD GetLastError();
27 VOID  SetLastError(DWORD dwErrCode);
28
29 #endif