1999-01-03 13:48:29 +01:00
|
|
|
/*
|
|
|
|
* Win32 advapi functions
|
|
|
|
*
|
|
|
|
* Copyright 1995 Sven Verdoolaege
|
|
|
|
*/
|
|
|
|
|
1999-06-12 16:55:11 +02:00
|
|
|
#include <stdio.h>
|
1999-02-17 14:51:06 +01:00
|
|
|
#include <unistd.h>
|
1999-02-19 16:42:11 +01:00
|
|
|
#include <string.h>
|
1999-02-17 14:51:06 +01:00
|
|
|
|
1999-07-03 18:01:42 +02:00
|
|
|
#include "winbase.h"
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1999-01-03 13:48:29 +01:00
|
|
|
#include "winerror.h"
|
1999-02-17 14:51:06 +01:00
|
|
|
#include "wine/winestring.h"
|
1999-01-03 13:48:29 +01:00
|
|
|
|
1999-05-14 10:17:14 +02:00
|
|
|
#include "debugtools.h"
|
1999-02-17 14:51:06 +01:00
|
|
|
|
1999-01-03 13:48:29 +01:00
|
|
|
|
1999-01-28 14:46:25 +01:00
|
|
|
/******************************************************************************
|
2000-03-28 22:22:59 +02:00
|
|
|
* GetUserNameA [ADVAPI32.67]
|
1999-01-03 13:48:29 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI
|
|
|
|
GetUserNameA( LPSTR lpszName, LPDWORD lpSize )
|
1999-01-03 13:48:29 +01:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
name=getlogin();
|
|
|
|
#if 0
|
|
|
|
/* FIXME: should use getpwuid() here */
|
|
|
|
if (!name) name=cuserid(NULL);
|
|
|
|
#endif
|
|
|
|
len = name ? strlen(name) : 0;
|
|
|
|
if (!len || !lpSize || len > *lpSize) {
|
|
|
|
if (lpszName) *lpszName = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*lpSize=len;
|
|
|
|
strcpy(lpszName, name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-01-28 14:46:25 +01:00
|
|
|
/******************************************************************************
|
2000-03-28 22:22:59 +02:00
|
|
|
* GetUserNameW [ADVAPI32.68]
|
1999-01-28 14:46:25 +01:00
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* lpszName []
|
|
|
|
* lpSize []
|
1999-01-03 13:48:29 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI
|
|
|
|
GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
|
1999-01-03 13:48:29 +01:00
|
|
|
{
|
|
|
|
LPSTR name = (LPSTR)HeapAlloc( GetProcessHeap(), 0, *lpSize );
|
|
|
|
DWORD size = *lpSize;
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL res = GetUserNameA(name,lpSize);
|
1999-01-03 13:48:29 +01:00
|
|
|
|
|
|
|
lstrcpynAtoW(lpszName,name,size);
|
|
|
|
HeapFree( GetProcessHeap(), 0, name );
|
|
|
|
return res;
|
|
|
|
}
|