Return current user ID
Source position: bunxh.inc line 48
function FpGetuid: TUid ;
FpGetuid returns the real user ID of the currently running process.
None.
Return real group ID
Return effective user ID
Return effective group ID
Return current process ID
Return parent process ID
Set the current user ID
Program Example17; { Program to demonstrate the GetUid and GetEUid functions. } Uses BaseUnix; begin writeln ('User Id = ',fpgetuid,' Effective user Id = ',fpgeteuid); end.