Added stubs for all functions.
[wine.git] / dlls / uxtheme / metric.c
blob30e1889f8f05c54f7fcc4665d80bad2fcfbcaf3a
1 /*
2 * Win32 5.1 Theme metrics
4 * Copyright (C) 2003 Kevin Koltzau
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
23 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "wingdi.h"
29 #include "uxtheme.h"
31 #include "uxthemedll.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
37 /***********************************************************************
38 * GetThemeSysBool (UXTHEME.@)
40 BOOL WINAPI GetThemeSysBool(HTHEME hTheme, int iBoolID)
42 FIXME("%d: stub\n", iBoolID);
43 return FALSE;
46 /***********************************************************************
47 * GetThemeSysColor (UXTHEME.@)
49 COLORREF WINAPI GetThemeSysColor(HTHEME hTheme, int iColorID)
51 FIXME("%d: stub\n", iColorID);
52 return FALSE;
55 /***********************************************************************
56 * GetThemeSysColorBrush (UXTHEME.@)
58 HBRUSH WINAPI GetThemeSysColorBrush(HTHEME hTheme, int iColorID)
60 FIXME("%d: stub\n", iColorID);
61 return FALSE;
64 /***********************************************************************
65 * GetThemeSysFont (UXTHEME.@)
67 HRESULT WINAPI GetThemeSysFont(HTHEME hTheme, int iFontID, LOGFONTW *plf)
69 FIXME("%d: stub\n", iFontID);
70 if(!hTheme)
71 return E_HANDLE;
72 return ERROR_CALL_NOT_IMPLEMENTED;
75 /***********************************************************************
76 * GetThemeSysInt (UXTHEME.@)
78 HRESULT WINAPI GetThemeSysInt(HTHEME hTheme, int iIntID, int *piValue)
80 FIXME("%d: stub\n", iIntID);
81 if(!hTheme)
82 return E_HANDLE;
83 return ERROR_CALL_NOT_IMPLEMENTED;
86 /***********************************************************************
87 * GetThemeSysSize (UXTHEME.@)
89 int WINAPI GetThemeSysSize(HTHEME hTheme, int iSizeID)
91 FIXME("%d: stub\n", iSizeID);
92 return 0;
95 /***********************************************************************
96 * GetThemeSysString (UXTHEME.@)
98 HRESULT WINAPI GetThemeSysString(HTHEME hTheme, int iStringID,
99 LPWSTR pszStringBuff, int cchMaxStringChars)
101 FIXME("%d: stub\n", iStringID);
102 if(!hTheme)
103 return E_HANDLE;
104 return ERROR_CALL_NOT_IMPLEMENTED;