wine-wine/dlls/advapi32/advapi.c

59 lines
1.1 KiB
C
Raw Normal View History

/*
* Win32 advapi functions
*
* Copyright 1995 Sven Verdoolaege
*/
#include <unistd.h>
#include "wintypes.h"
#include "winerror.h"
#include "wine/winestring.h"
#include "heap.h"
#include "debug.h"
1999-01-28 13:46:25 +00:00
/******************************************************************************
* GetUserName32A [ADVAPI32.67]
*/
1999-01-28 13:46:25 +00:00
BOOL32 WINAPI
GetUserName32A( LPSTR lpszName, LPDWORD lpSize )
{
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 13:46:25 +00:00
/******************************************************************************
* GetUserName32W [ADVAPI32.68]
*
* PARAMS
* lpszName []
* lpSize []
*/
1999-01-28 13:46:25 +00:00
BOOL32 WINAPI
GetUserName32W( LPWSTR lpszName, LPDWORD lpSize )
{
LPSTR name = (LPSTR)HeapAlloc( GetProcessHeap(), 0, *lpSize );
DWORD size = *lpSize;
BOOL32 res = GetUserName32A(name,lpSize);
lstrcpynAtoW(lpszName,name,size);
HeapFree( GetProcessHeap(), 0, name );
return res;
}