The answer is yes. GetUserName() is available on all Windows versions.
However, the code you showed will only compile on Delphi 2009 and later, since you are passing a PWideChar to GetUserName() which only works if GetUserName() maps to GetUserNameW(). If you need the code to compile on earlier Delphi versions, use PChar instead of PWideChar to match whatever mapping GetUserName() is actually using:
function getUserName: String;
var
BufSize: DWord;
Buffer: PChar;
begin
BufSize := 1024;
Buffer := StrAlloc(BufSize);
try
if GetUserName(Buffer, BufSize) then
SetString(Result, Buffer, BufSize-1)
else
RaiseLastOSError;
finally
StrDispose(Buffer);
end;
end;
Which can then be simplified to:
function getUserName: String;
var
BufSize: DWord;
begin
BufSize := 1024;
SetLength(Result, BufSize);
if GetUserName(PChar(Buffer), BufSize) then
SetLength(Result, BufSize-1)
else
RaiseLastOSError;
end;