x11drv: Get rid of the no longer used desktop_tid variable.
[wine] / dlls / userenv / userenv_main.c
1 /*
2  * Implementation of userenv.dll
3  *
4  * Copyright 2006 Mike McCormack for CodeWeavers
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winreg.h"
26
27 #include "wine/debug.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL( userenv );
30
31 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
32 {
33     TRACE("%p %ld %p\n", hinstDLL, fdwReason, lpvReserved);
34
35     switch (fdwReason)
36     {
37     case DLL_WINE_PREATTACH:
38         return FALSE;  /* prefer native version */
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 CreateEnvironmentBlock( LPVOID* lpEnvironment,
49                      HANDLE hToken, BOOL bInherit )
50 {
51     FIXME("%p %p %d\n", lpEnvironment, hToken, bInherit );
52     return FALSE;
53 }
54
55 BOOL WINAPI GetUserProfileDirectoryA( HANDLE hToken, LPSTR lpProfileDir,
56                      LPDWORD lpcchSize )
57 {
58     FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
59     return FALSE;
60 }
61
62 BOOL WINAPI GetUserProfileDirectoryW( HANDLE hToken, LPWSTR lpProfileDir,
63                      LPDWORD lpcchSize )
64 {
65     FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
66     return FALSE;
67 }
68
69 BOOL WINAPI GetProfilesDirectoryA( LPSTR lpProfilesDir, LPDWORD lpcchSize )
70 {
71     FIXME("%p %p\n", lpProfilesDir, lpcchSize );
72     return FALSE;
73 }
74
75 BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
76 {
77     FIXME("%p %p\n", lpProfilesDir, lpcchSize );
78     return FALSE;
79 }
80
81 typedef struct _PROFILEINFOA {
82     DWORD dwSize;
83     DWORD dwFlags;
84     LPSTR lpUserName;
85     LPSTR lpProfilePath;
86     LPSTR lpDefaultPath;
87     LPSTR lpServerName;
88     LPSTR lpPolicyPath;
89     HANDLE hProfile;
90 } PROFILEINFOA, *LPPROFILEINFOA;
91
92 BOOL WINAPI LoadUserProfileA( HANDLE hToken, LPPROFILEINFOA lpProfileInfo )
93 {
94     FIXME("%p %p\n", hToken, lpProfileInfo );
95     lpProfileInfo->hProfile = HKEY_CURRENT_USER;
96     return TRUE;
97 }