The LVN_GETDISPINFO notify message should point to the same iSubItem
[wine] / dlls / uxtheme / main.c
1 /*
2  * Win32 5.1 Themes
3  *
4  * Copyright (C) 2003 Kevin Koltzau
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22
23 #include <stdarg.h>
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "wingdi.h"
29 #include "uxtheme.h"
30
31 #include "wine/debug.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
34
35 /* For the moment, do nothing here. */
36 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
37 {
38     switch(fdwReason) {
39         case DLL_PROCESS_ATTACH:
40             DisableThreadLibraryCalls(hInstDLL);
41             break;
42         case DLL_PROCESS_DETACH:
43             break;
44     }
45     return TRUE;
46 }
47
48 BOOL WINAPI IsAppThemed(void)
49 {
50     FIXME("\n");
51     return FALSE;
52 }
53
54 BOOL WINAPI IsThemeActive(void)
55 {
56     FIXME("\n");
57     return FALSE;
58 }
59
60 HRESULT WINAPI EnableThemeDialogTexture(HWND hwnd, DWORD dwFlags) {
61     FIXME("%p 0x%08lx\n", hwnd, dwFlags);
62     return ERROR_CALL_NOT_IMPLEMENTED;
63 }
64
65 HRESULT WINAPI EnableTheming(BOOL fEnable) {
66     FIXME("%d\n", fEnable);
67     return ERROR_CALL_NOT_IMPLEMENTED;
68 }
69
70 HTHEME WINAPI OpenThemeData(HWND hwnd, LPCWSTR pszClassList) {
71     FIXME("%p %s\n", hwnd, debugstr_w(pszClassList));
72     return NULL;
73 }
74
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;
80 }