FpGetegid
Return effective group ID
Declaration
Source position: bunxh.inc line 51
function FpGetegid : TGid;
Description
FpGetegid returns the effective group ID of the currently running process.
Errors
None.
See also
Example
Program Example18;
{ Program to demonstrate the GetGid and GetEGid functions. }
Uses BaseUnix;
begin
writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid);
end.