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
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
35 /* For the moment, do nothing here. */
36 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
39 case DLL_PROCESS_ATTACH:
40 DisableThreadLibraryCalls(hInstDLL);
42 case DLL_PROCESS_DETACH:
48 BOOL WINAPI IsAppThemed(void)
54 BOOL WINAPI IsThemeActive(void)
60 HRESULT WINAPI EnableThemeDialogTexture(HWND hwnd, DWORD dwFlags) {
61 FIXME("%p 0x%08lx\n", hwnd, dwFlags);
62 return ERROR_CALL_NOT_IMPLEMENTED;
65 HRESULT WINAPI EnableTheming(BOOL fEnable) {
66 FIXME("%d\n", fEnable);
67 return ERROR_CALL_NOT_IMPLEMENTED;
70 HTHEME WINAPI OpenThemeData(HWND hwnd, LPCWSTR pszClassList) {
71 FIXME("%p %s\n", hwnd, debugstr_w(pszClassList));
75 HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR pszSubAppName,
76 LPCWSTR pszSubIdList) {
77 FIXME("%p %s %s\n", hwnd, debugstr_w(pszSubAppName),
78 debugstr_w(pszSubIdList));
79 return ERROR_CALL_NOT_IMPLEMENTED;