2 * Win32 advapi functions
4 * Copyright 1995 Sven Verdoolaege
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
22 #include "wine/port.h"
35 #include "wine/library.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(advapi);
40 /******************************************************************************
41 * GetUserNameA [ADVAPI32.@]
43 * Get the current user name.
46 * lpszName [O] Destination for the user name.
47 * lpSize [I/O] Size of lpszName.
50 * Success: The length of the user name, including terminating NUL.
51 * Failure: ERROR_MORE_DATA if *lpSize is too small.
54 GetUserNameA( LPSTR lpszName, LPDWORD lpSize )
57 const char *name = wine_get_user_name();
59 /* We need to include the null character when determining the size of the buffer. */
60 len = strlen(name) + 1;
63 SetLastError(ERROR_MORE_DATA);
69 strcpy(lpszName, name);
73 /******************************************************************************
74 * GetUserNameW [ADVAPI32.@]
79 GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
81 const char *name = wine_get_user_name();
82 DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
86 SetLastError(ERROR_MORE_DATA);
92 MultiByteToWideChar( CP_ACP, 0, name, -1, lpszName, len );
96 /******************************************************************************
97 * GetCurrentHwProfileA [ADVAPI32.@]
99 * Get the current hardware profile.
102 * pInfo [O] Destination for hardware profile information.
105 * Success: TRUE. pInfo is updated with the hardware profile details.
108 BOOL WINAPI GetCurrentHwProfileA(LPHW_PROFILE_INFOA pInfo)
110 FIXME("(%p) semi-stub\n", pInfo);
111 pInfo->dwDockInfo = DOCKINFO_DOCKED;
112 strcpy(pInfo->szHwProfileGuid,"{12340001-1234-1234-1234-1233456789012}");
113 strcpy(pInfo->szHwProfileName,"Wine Profile");
117 /******************************************************************************
118 * AbortSystemShutdownA [ADVAPI32.@]
120 * Stop a system shutdown if one is in progress.
123 * lpMachineName [I] Name of machine to not shutdown.
130 * The Wine implementation of this function is a harmless stub.
132 BOOL WINAPI AbortSystemShutdownA( LPSTR lpMachineName )
134 TRACE("stub %s (harmless)\n", lpMachineName);
138 /******************************************************************************
139 * AbortSystemShutdownW [ADVAPI32.@]
141 * See AbortSystemShutdownA.
143 BOOL WINAPI AbortSystemShutdownW( LPWSTR lpMachineName )
145 TRACE("stub %s (harmless)\n", debugstr_w(lpMachineName));
149 /******************************************************************************
150 * InitiateSystemShutdownExA [ADVAPI32.@]
152 BOOL WINAPI InitiateSystemShutdownExA( LPSTR lpMachineName, LPSTR lpMessage,
153 DWORD dwTimeout, BOOL bForceAppsClosed, BOOL bRebootAfterShutdown,
156 FIXME("%s %s %ld %d %d %ld\n", debugstr_a(lpMachineName),
157 debugstr_a(lpMessage), dwTimeout, bForceAppsClosed,
158 bRebootAfterShutdown, dwReason);
162 /******************************************************************************
163 * InitiateSystemShutdownExA [ADVAPI32.@]
165 BOOL WINAPI InitiateSystemShutdownExW( LPWSTR lpMachineName, LPWSTR lpMessage,
166 DWORD dwTimeout, BOOL bForceAppsClosed, BOOL bRebootAfterShutdown,
169 FIXME("%s %s %ld %d %d %ld\n", debugstr_w(lpMachineName),
170 debugstr_w(lpMessage), dwTimeout, bForceAppsClosed,
171 bRebootAfterShutdown, dwReason);
175 DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR *Descriptor, WCHAR *CommandLine,
176 DWORD *CommandLineLength)
178 FIXME("stub (%s)\n", debugstr_w(Descriptor));
179 return ERROR_CALL_NOT_IMPLEMENTED;