Added/upgraded Hungarian resources.
[wine] / dlls / advapi32 / advapi.c
1 /*
2  * Win32 advapi functions
3  *
4  * Copyright 1995 Sven Verdoolaege
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 #include "wine/port.h"
23
24 #include <errno.h>
25 #include <stdio.h>
26 #include <string.h>
27
28 #include "winbase.h"
29 #include "windef.h"
30 #include "winnls.h"
31 #include "winerror.h"
32
33 #include "wine/library.h"
34 #include "wine/debug.h"
35
36 WINE_DEFAULT_DEBUG_CHANNEL(advapi);
37
38 /******************************************************************************
39  * GetUserNameA [ADVAPI32.@]
40  *
41  * NOTE: lpSize returns the total length of the username, including the
42  * terminating null character.
43  */
44 BOOL WINAPI
45 GetUserNameA( LPSTR lpszName, LPDWORD lpSize )
46 {
47   size_t len;
48   const char *name = wine_get_user_name();
49
50   /* We need to include the null character when determining the size of the buffer. */
51   len = strlen(name) + 1;
52   if (len > *lpSize)
53   {
54     SetLastError(ERROR_MORE_DATA);
55     *lpSize = len;
56     return 0;
57   }
58
59   *lpSize = len;
60   strcpy(lpszName, name);
61   return 1;
62 }
63
64 /******************************************************************************
65  * GetUserNameW [ADVAPI32.@]
66  *
67  * PARAMS
68  *   lpszName []
69  *   lpSize   []
70  */
71 BOOL WINAPI
72 GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
73 {
74     const char *name = wine_get_user_name();
75     DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
76
77     if (len > *lpSize)
78     {
79         SetLastError(ERROR_MORE_DATA);
80         *lpSize = len;
81         return FALSE;
82     }
83
84     *lpSize = len;
85     MultiByteToWideChar( CP_ACP, 0, name, -1, lpszName, len );
86     return TRUE;
87 }
88
89 /******************************************************************************
90  * GetCurrentHwProfileA [ADVAPI32.@]
91  */
92 BOOL WINAPI GetCurrentHwProfileA(LPHW_PROFILE_INFOA info)
93 {
94         FIXME("Mostly Stub\n");
95         info->dwDockInfo = DOCKINFO_DOCKED;
96         strcpy(info->szHwProfileGuid,"{12340001-1234-1234-1234-1233456789012}");
97         strcpy(info->szHwProfileName,"Wine Profile");
98         return 1;
99 }
100
101 /******************************************************************************
102  * AbortSystemShutdownA [ADVAPI32.@]
103  *
104  * PARAMS
105  *      lpMachineName
106  */
107 BOOL WINAPI AbortSystemShutdownA( LPSTR lpMachineName )
108 {
109     TRACE("stub %s (harmless)\n", lpMachineName);
110     return TRUE;
111 }
112
113 /******************************************************************************
114  * AbortSystemShutdownW [ADVAPI32.@]
115  *
116  * PARAMS
117  *      lpMachineName
118  */
119 BOOL WINAPI AbortSystemShutdownW( LPCWSTR lpMachineName )
120 {
121     TRACE("stub %s (harmless)\n", debugstr_w(lpMachineName));
122     return TRUE;
123 }