/* -*- 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 = nsnull; 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 = nsnull; return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsUserInfo::GetDomain(char * *aDomain) { *aDomain = nsnull; return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsUserInfo::GetEmailAddress(char * *aEmailAddress) { *aEmailAddress = nsnull; return NS_ERROR_NOT_IMPLEMENTED; }