usp10: Update tests in test_ScriptItemIzeShapePlace to match Windows results.
[wine/multimedia.git] / dlls / userenv / userenv_main.c
blobe5e1334561cc8670f29d119aeb9bdf634355d22d
1 /*
2 * Implementation of userenv.dll
4 * Copyright 2006 Mike McCormack for CodeWeavers
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winreg.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL( userenv );
31 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
33 TRACE("%p %ld %p\n", hinstDLL, fdwReason, lpvReserved);
35 switch (fdwReason)
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;
45 return TRUE;
48 BOOL WINAPI CreateEnvironmentBlock( LPVOID* lpEnvironment,
49 HANDLE hToken, BOOL bInherit )
51 FIXME("%p %p %d\n", lpEnvironment, hToken, bInherit );
52 return FALSE;
55 BOOL WINAPI GetUserProfileDirectoryA( HANDLE hToken, LPSTR lpProfileDir,
56 LPDWORD lpcchSize )
58 FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
59 return FALSE;
62 BOOL WINAPI GetUserProfileDirectoryW( HANDLE hToken, LPWSTR lpProfileDir,
63 LPDWORD lpcchSize )
65 FIXME("%p %p %p\n", hToken, lpProfileDir, lpcchSize );
66 return FALSE;
69 BOOL WINAPI GetProfilesDirectoryA( LPSTR lpProfilesDir, LPDWORD lpcchSize )
71 FIXME("%p %p\n", lpProfilesDir, lpcchSize );
72 return FALSE;
75 BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
77 FIXME("%p %p\n", lpProfilesDir, lpcchSize );
78 return FALSE;
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;
92 BOOL WINAPI LoadUserProfileA( HANDLE hToken, LPPROFILEINFOA lpProfileInfo )
94 FIXME("%p %p\n", hToken, lpProfileInfo );
95 lpProfileInfo->hProfile = HKEY_CURRENT_USER;
96 return TRUE;