mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsUserInfo.h"
|
|
#include "nsString.h"
|
|
#include "windows.h"
|
|
#include "nsCRT.h"
|
|
#include "nsXPIDLString.h"
|
|
|
|
nsUserInfo::nsUserInfo()
|
|
{
|
|
}
|
|
|
|
nsUserInfo::~nsUserInfo()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS1(nsUserInfo,nsIUserInfo)
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetUsername(char **aUsername)
|
|
{
|
|
*aUsername = nullptr;
|
|
|
|
PRUnichar username[256];
|
|
DWORD size = 256;
|
|
|
|
if (!GetUserNameW(username, &size))
|
|
return NS_ERROR_FAILURE;
|
|
|
|
*aUsername = ToNewUTF8String(nsDependentString(username));
|
|
|
|
return (*aUsername) ? NS_OK : NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetFullname(PRUnichar **aFullname)
|
|
{
|
|
*aFullname = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetDomain(char * *aDomain)
|
|
{
|
|
*aDomain = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetEmailAddress(char * *aEmailAddress)
|
|
{
|
|
*aEmailAddress = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|