Mega Code Archive

 
Categories / Delphi / Ide Indy
 

How to get the current Username (Kylix)

Title: How to get the current Username (Kylix) function GetCurrentUser: string; var pwrec: PPasswordRecord; begin pwrec := getpwuid(getuid); Result := pwrec.pw_name; end;